public class MyLinkedList.MyLinkedListIterator extends Object implements ListIterator<E>
| Modifier and Type | Field and Description |
|---|---|
(package private) MyLinkedList.Node |
cursor |
| Constructor and Description |
|---|
MyLinkedListIterator() |
| 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) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingfinal MyLinkedList.Node cursor
public boolean hasNext()
public E next()
public boolean hasPrevious()
hasPrevious in interface ListIterator<E>public E previous()
previous in interface ListIterator<E>public int nextIndex()
nextIndex in interface ListIterator<E>public int previousIndex()
previousIndex in interface ListIterator<E>public void remove()
public void set(E e)
set in interface ListIterator<E>public void add(E e)
add in interface ListIterator<E>