java.util
Interface ListIterator<E>

Type Parameters:
E - type of the elements
All Superinterfaces:
Iterator<E>

public interface ListIterator<E>
extends Iterator<E>

Author:
Sven Köhler

Method Summary
 void add(E e)
           
 boolean hasPrevious()
           
 int nextIndex()
           
 E previous()
           
 int previousIndex()
           
 void set(E e)
           
 
Methods inherited from interface java.util.Iterator
hasNext, next, remove
 

Method Detail

nextIndex

int nextIndex()

previousIndex

int previousIndex()

hasPrevious

boolean hasPrevious()

previous

E previous()

add

void add(E e)

set

void set(E e)