E - The type of the elements in this list iteratorpublic class DelegateListIterator<E>
extends java.lang.Object
implements java.util.ListIterator<E>
| Constructor and Description |
|---|
DelegateListIterator(java.util.ListIterator<E> delegate) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(E e) |
boolean |
hasNext() |
boolean |
hasPrevious() |
E |
next() |
int |
nextIndex() |
E |
previous() |
int |
previousIndex() |
void |
remove() |
void |
set(E e) |
public DelegateListIterator(java.util.ListIterator<E> delegate)
public boolean hasNext()
public E next()
public boolean hasPrevious()
hasPrevious in interface java.util.ListIterator<E>public int nextIndex()
nextIndex in interface java.util.ListIterator<E>public int previousIndex()
previousIndex in interface java.util.ListIterator<E>public void remove()