Class AbstractLinkedList.LinkedSubListIterator<E>
java.lang.Object
org.apache.commons.collections4.list.AbstractLinkedList.LinkedListIterator<E>
org.apache.commons.collections4.list.AbstractLinkedList.LinkedSubListIterator<E>
- Type Parameters:
E
- the type of elements in this iterator.
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
,OrderedIterator<E>
- Enclosing class:
- AbstractLinkedList<E>
protected static class AbstractLinkedList.LinkedSubListIterator<E>
extends AbstractLinkedList.LinkedListIterator<E>
A list iterator over the linked sub list.
-
Field Summary
Modifier and TypeFieldDescriptionprotected final AbstractLinkedList.LinkedSubList<E>
The sub listFields inherited from class org.apache.commons.collections4.list.AbstractLinkedList.LinkedListIterator
current, expectedModCount, next, nextIndex, parent
-
Constructor Summary
ModifierConstructorDescriptionprotected
LinkedSubListIterator
(AbstractLinkedList.LinkedSubList<E> sub, int startIndex) -
Method Summary
Methods inherited from class org.apache.commons.collections4.list.AbstractLinkedList.LinkedListIterator
checkModCount, getLastNodeReturned, next, previous, previousIndex, set
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Field Details
-
sub
The sub list
-
-
Constructor Details
-
LinkedSubListIterator
-
-
Method Details
-
add
- Specified by:
add
in interfaceListIterator<E>
- Overrides:
add
in classAbstractLinkedList.LinkedListIterator<E>
-
hasNext
- Specified by:
hasNext
in interfaceIterator<E>
- Specified by:
hasNext
in interfaceListIterator<E>
- Overrides:
hasNext
in classAbstractLinkedList.LinkedListIterator<E>
-
hasPrevious
Description copied from interface:OrderedIterator
Checks to see if there is a previous element that can be iterated to.- Specified by:
hasPrevious
in interfaceListIterator<E>
- Specified by:
hasPrevious
in interfaceOrderedIterator<E>
- Overrides:
hasPrevious
in classAbstractLinkedList.LinkedListIterator<E>
- Returns:
true
if the iterator has a previous element
-
nextIndex
- Specified by:
nextIndex
in interfaceListIterator<E>
- Overrides:
nextIndex
in classAbstractLinkedList.LinkedListIterator<E>
-
remove
- Specified by:
remove
in interfaceIterator<E>
- Specified by:
remove
in interfaceListIterator<E>
- Overrides:
remove
in classAbstractLinkedList.LinkedListIterator<E>
-