protected static class CursorableLinkedList.SubCursor<E> extends CursorableLinkedList.Cursor<E>
| Modifier and Type | Field and Description |
|---|---|
protected AbstractLinkedList.LinkedSubList<E> |
sub
The parent list
|
current, 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, setclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingprotected 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 Iterator<E>hasNext in interface ListIterator<E>hasNext in class AbstractLinkedList.LinkedListIterator<E>public boolean hasPrevious()
OrderedIteratorhasPrevious in interface 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 ListIterator<E>nextIndex in class CursorableLinkedList.Cursor<E>public void add(E obj)
CursorableLinkedList.Cursoradd in interface 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 Iterator<E>remove in interface ListIterator<E>remove in class CursorableLinkedList.Cursor<E>Copyright © 2001–2019 The Apache Software Foundation. All rights reserved.