5 lines
77 B
Java
5 lines
77 B
Java
Iterable<Type> collect;
|
|
...
|
|
for(Type i:collect){
|
|
System.out.println(i);
|
|
}
|