java.util.Iterator
is the standard Java SE interface for object that implement the Iterator design pattern. The java.lang.Iterable
interface is for objects that can provide an iterator.
It is possible to iterate over an array using the for
-each loop, though java arrays do not implement Iterable; iterating is done by JVM using a non-accessible index in the background.