Main Page | See live article | Alphabetical index

Iterator interface

From the Java API documentation at java.sun.com:

public interface Iterator

An iterator over a collection. Iterator takes the place of Enumeration in the Java collections framework. Iterators differ from enumerations in two ways:

Since: 1.2 See Also: Collection, ListIterator, Enumeration