Uses of Interface
java.util.ListIterator

Packages that use ListIterator
java.util   
 

Uses of ListIterator in java.util
 

Classes in java.util that implement ListIterator
private  class AbstractList.ListItr
           
private  class LinkedList.ListItr
           
 

Methods in java.util that return ListIterator
 ListIterator AbstractList.listIterator()
          Returns an iterator of the elements in this list (in proper sequence).
 ListIterator AbstractList.listIterator(int index)
          Returns a list iterator of the elements in this list (in proper sequence), starting at the specified position in the list.
abstract  ListIterator AbstractSequentialList.listIterator(int index)
          Returns a list iterator over the elements in this list (in proper sequence).
 ListIterator Collections.UnmodifiableList.listIterator()
           
 ListIterator Collections.UnmodifiableList.listIterator(int index)
           
 ListIterator Collections.SynchronizedList.listIterator()
           
 ListIterator Collections.SynchronizedList.listIterator(int index)
           
 ListIterator LinkedList.listIterator(int index)
          Returns a list-iterator of the elements in this list (in proper sequence), starting at the specified position in the list.
 ListIterator List.listIterator()
          Returns a list iterator of the elements in this list (in proper sequence).
 ListIterator List.listIterator(int index)
          Returns a list iterator of the elements in this list (in proper sequence), starting at the specified position in this list.
 ListIterator SubList.listIterator(int index)