ListIterator


public interface ListIterator<AnyType>
       extends Iterator<AnyType> {
boolean hasPrevious();
AnyType previous();
void add( AnyType x );
void set( AnyType newVal );

ListIterator extends the functionality of Iterator:

Contents    Page-10    Prev    Next    Page+10    Index