Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
java.util.ListIterator

Uses of ListIterator in java.util
 

Classes in java.util that implement ListIterator
private static class Collections.SynchronizedListIterator
          The implementation of SynchronizedList#listIterator().
private static class Collections.UnmodifiableListIterator
          The implementation of UnmodifiableList#listIterator().
private  class LinkedList.LinkedListItr
          A ListIterator over the list.
 

Fields in java.util declared as ListIterator
private  ListIterator Collections.SynchronizedListIterator.li
          The wrapped iterator, stored both here and in the superclass to avoid excessive casting.
private  ListIterator Collections.UnmodifiableListIterator.li
          The wrapped iterator, stored both here and in the superclass to avoid excessive casting.
 

Methods in java.util that return ListIterator
 ListIterator List.listIterator()
          Obtain a ListIterator over this list, starting at the beginning.
 ListIterator List.listIterator(int index)
          Obtain a ListIterator over this list, starting at a given position.
 ListIterator AbstractList.listIterator()
          Obtain a ListIterator over this list, starting at the beginning.
 ListIterator AbstractList.listIterator(int index)
          Obtain a ListIterator over this list, starting at a given position.
 ListIterator AbstractList.SubList.listIterator(int index)
          Specified by AbstractList.subList to return a wrapper around the backing list's iterator.
 ListIterator Collections.SynchronizedList.listIterator()
          Retrieves a synchronized wrapper around the underlying list's list iterator.
 ListIterator Collections.SynchronizedList.listIterator(int index)
          Retrieves a synchronized wrapper around the underlying list's list iterator.
 ListIterator Collections.UnmodifiableList.listIterator()
          Obtains a list iterator over the underlying list, starting at the beginning and maintaining the unmodifiable nature of this list.
 ListIterator Collections.UnmodifiableList.listIterator(int index)
          Obtains a list iterator over the underlying list, starting at the specified index and maintaining the unmodifiable nature of this list.
abstract  ListIterator AbstractSequentialList.listIterator(int index)
          Returns a ListIterator over the list, starting from position index.
 ListIterator LinkedList.listIterator(int index)
          Obtain a ListIterator over this list, starting at a given index.
 

Constructors in java.util with parameters of type ListIterator
Collections.SynchronizedListIterator(java.lang.Object sync, ListIterator li)
          Only trusted code creates a wrapper, with the specified sync.
Collections.UnmodifiableListIterator(ListIterator li)
          Only trusted code creates a wrapper.