java.lang.Iterable
public interface Iterable<T> implements Iterable<T>
Utility class to allow use of Iterable feature in JDK 1.5+
abstract Iterator<T>
iterator()
forEach, spliterator
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract Iterator<T> iterator()
Returns an iterator over a set of elements of type T.
an Iterator.