java.util
Interface ListIterator

All Superinterfaces:
Iterator

public interface ListIterator
extends Iterator


Method Summary
 void add(Object)
           
 boolean hasNext()
           
 boolean hasPrevious()
           
 Object next()
           
 int nextIndex()
           
 Object previous()
           
 int previousIndex()
           
 void remove()
           
 void set(Object)
           
 

Method Detail

hasNext

public boolean hasNext()
Specified by:
hasNext in interface Iterator

next

public Object next()
Specified by:
next in interface Iterator

hasPrevious

public boolean hasPrevious()

previous

public Object previous()

nextIndex

public int nextIndex()

previousIndex

public int previousIndex()

remove

public void remove()
Specified by:
remove in interface Iterator

set

public void set(Object)

add

public void add(Object)