public class NodeAndIterators.MyListIterator
extends java.lang.Object
implements java.util.ListIterator<T>
| Constructor and Description | 
|---|
MyListIterator()  | 
MyListIterator(int initial_index)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
add(T item)  | 
boolean | 
hasNext()  | 
boolean | 
hasPrevious()  | 
T | 
next()  | 
int | 
nextIndex()  | 
T | 
previous()  | 
int | 
previousIndex()  | 
void | 
remove()  | 
void | 
set(T item)  | 
public MyListIterator()
public MyListIterator(int initial_index)
public boolean hasNext()
public T next()
public int nextIndex()
nextIndex in interface java.util.ListIterator<T>public boolean hasPrevious()
hasPrevious in interface java.util.ListIterator<T>public int previousIndex()
previousIndex in interface java.util.ListIterator<T>public void remove()