protected static class CursorableLinkedList.SubCursor<E> extends CursorableLinkedList.Cursor<E>
| Modifier and Type | Field and Description |
|---|---|
protected AbstractLinkedList.LinkedSubList<E> |
sub
The parent list
|
currentRemovedByAnother, nextIndexValid, validcurrent, expectedModCount, next, nextIndex, parent| Modifier | Constructor and Description |
|---|---|
protected |
SubCursor(AbstractLinkedList.LinkedSubList<E> sub,
int index)
Constructs a new cursor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(E obj)
Adds an object to the list.
|
boolean |
hasNext() |
boolean |
hasPrevious()
Checks to see if there is a previous element that can be iterated to.
|
int |
nextIndex()
Gets the index of the next element to be returned.
|
void |
remove()
Removes the item last returned by this iterator.
|
checkModCount, close, nodeChanged, nodeInserted, nodeRemovedgetLastNodeReturned, next, previous, previousIndex, setprotected final AbstractLinkedList.LinkedSubList<E> sub
protected SubCursor(AbstractLinkedList.LinkedSubList<E> sub, int index)
sub - the sub listindex - the index to start frompublic boolean hasNext()
hasNext in interface java.util.Iterator<E>hasNext in interface java.util.ListIterator<E>hasNext in class AbstractLinkedList.LinkedListIterator<E>public boolean hasPrevious()
OrderedIteratorhasPrevious in interface java.util.ListIterator<E>hasPrevious in interface OrderedIterator<E>hasPrevious in class AbstractLinkedList.LinkedListIterator<E>true if the iterator has a previous elementpublic int nextIndex()
CursorableLinkedList.CursornextIndex in interface java.util.ListIterator<E>nextIndex in class CursorableLinkedList.Cursor<E>public void add(E obj)
CursorableLinkedList.Cursoradd in interface java.util.ListIterator<E>add in class CursorableLinkedList.Cursor<E>obj - the object to addpublic void remove()
CursorableLinkedList.CursorThere may have been subsequent alterations to the list since you obtained this item, however you can still remove it. You can even remove it if the item is no longer in the main list. However, you can't call this method on the same iterator more than once without calling next() or previous().
remove in interface java.util.Iterator<E>remove in interface java.util.ListIterator<E>remove in class CursorableLinkedList.Cursor<E>