@User public class CheckedList.CheckedListIterator extends Object implements ListIterator<T>
| Modifier and Type | Field and Description |
|---|---|
protected ListIterator<T> |
pIterator |
| Constructor and Description |
|---|
CheckedListIterator(ListIterator<T> piter) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(T o) |
boolean |
hasNext() |
boolean |
hasPrevious() |
T |
next() |
int |
nextIndex() |
T |
previous() |
int |
previousIndex() |
void |
remove() |
void |
set(T o) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingprotected ListIterator<T> pIterator
@User public CheckedListIterator(ListIterator<T> piter)
@User public void add(T o)
add in interface ListIterator<T>@User public boolean hasNext()
@User public boolean hasPrevious()
hasPrevious in interface ListIterator<T>@User public int nextIndex()
nextIndex in interface ListIterator<T>@User public T previous()
previous in interface ListIterator<T>@User public int previousIndex()
previousIndex in interface ListIterator<T>@User public void remove()
@User public void set(T o)
set in interface ListIterator<T>see also the complete user documentation .