Uses of Interface
java.util.Iterator

Packages that use Iterator
java.lang   
java.util   
 

Uses of Iterator in java.lang
 

Methods in java.lang that return Iterator
 Iterator Iterable.iterator()
          Returns an Iterator for the elements in this object.
 

Uses of Iterator in java.util
 

Subinterfaces of Iterator in java.util
 interface ListIterator
          An ListIterator is used to sequence over a List of objects.
 

Methods in java.util that return Iterator
 Iterator HashSet.iterator()
          Returns an iterator over the elements in this set.
 Iterator Set.iterator()
          Answers an Iterator on the elements of this Set.
 Iterator AbstractList.iterator()
          Returns an iterator over the elements in this list in proper sequence.
 Iterator List.iterator()
          Answers an Iterator on the elements of this List.
abstract  Iterator AbstractCollection.iterator()
          Returns an iterator over the elements contained in this collection.
 Iterator Collection.iterator()
          Returns an instance of Iterator that may be used to access the objects contained by this collection.