Uses of Interface
java.util.Iterator

Packages that use Iterator
java.util   
 

Uses of Iterator in java.util
 

Subinterfaces of Iterator in java.util
 interface ListIterator
          An iterator for lists that allows the programmer to traverse the list in either direction and modify the list during iteration.
 

Classes in java.util that implement Iterator
private  class AbstractList.Itr
           
private  class AbstractList.ListItr
           
private  class HashMap.HashIterator
           
private  class Hashtable.Enumerator
          A hashtable enumerator class.
private  class LinkedList.ListItr
           
private  class TreeMap.Iterator
          TreeMap Iterator.
 

Methods in java.util that return Iterator
abstract  Iterator AbstractCollection.iterator()
          Returns an iterator over the elements contained in this collection.
 Iterator WeakHashMap.EntrySet.iterator()
           
 Iterator Set.iterator()
          Returns an iterator over the elements in this set.
 Iterator AbstractList.iterator()
          Returns an iterator over the elements in this list in proper sequence.
 Iterator AbstractSequentialList.iterator()
          Returns an iterator over the elements in this list (in proper sequence). This implementation merely returns a list iterator over the list.
 Iterator Collections.UnmodifiableCollection.iterator()
           
 Iterator Collections.UnmodifiableMap.UnmodifiableEntrySet.iterator()
           
 Iterator Collections.SynchronizedCollection.iterator()
           
 Iterator TreeSet.iterator()
          Returns an iterator over the elements in this set.
 Iterator Hashtable.KeySet.iterator()
           
 Iterator Hashtable.EntrySet.iterator()
           
 Iterator Hashtable.ValueCollection.iterator()
           
 Iterator Collection.iterator()
          Returns an iterator over the elements in this collection.
 Iterator HashSet.iterator()
          Returns an iterator over the elements in this set.
 Iterator List.iterator()
          Returns an iterator over the elements in this list in proper sequence.
 Iterator TreeMap.SubMap.EntrySetView.iterator()
           
 Iterator SubList.iterator()
           
 

Methods in java.util with parameters of type Iterator
private  void TreeMap.buildFromSorted(int size, Iterator it, ObjectInputStream str, Object defaultVal)
          Linear time tree building algorithm from sorted data.
private static TreeMap.Entry TreeMap.buildFromSorted(int level, int lo, int hi, int redLevel, Iterator it, ObjectInputStream str, Object defaultVal)
          Recursive "helper method" that does the real work of the of the previous method.