MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / main

Method main

collections/ForInCollections.java:9–15  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

7
8public class ForInCollections {
9 public static void main(String[] args) {
10 Collection<String> cs = new LinkedList<>();
11 Collections.addAll(cs,
12 "Take the long way home".split(" "));
13 for(String s : cs)
14 System.out.print("'" + s + "' ");
15 }
16}
17/* Output:
18'Take' 'the' 'long' 'way' 'home'

Callers

nothing calls this directly

Calls 3

addAllMethod · 0.80
splitMethod · 0.80
printMethod · 0.80

Tested by

no test coverage detected