Class AbstractLinkedList.LinkedListIterator<E>
- java.lang.Object
-
- org.apache.commons.collections4.list.AbstractLinkedList.LinkedListIterator<E>
-
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
,OrderedIterator<E>
- Direct Known Subclasses:
AbstractLinkedList.LinkedSubListIterator
,CursorableLinkedList.Cursor
- Enclosing class:
- AbstractLinkedList<E>
protected static class AbstractLinkedList.LinkedListIterator<E> extends Object implements ListIterator<E>, OrderedIterator<E>
A list iterator over the linked list.
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractLinkedList.Node<E>
current
The last node that was returned bynext()
orprevious()
.protected int
expectedModCount
The modification count that the list is expected to have.protected AbstractLinkedList.Node<E>
next
The node that will be returned bynext()
.protected int
nextIndex
The index ofnext
.protected AbstractLinkedList<E>
parent
The parent list
-
Constructor Summary
Constructors Modifier Constructor Description protected
LinkedListIterator(AbstractLinkedList<E> parent, int fromIndex)
Create a ListIterator for a list.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(E obj)
protected void
checkModCount()
Checks the modification count of the list is the value that this object expects.protected AbstractLinkedList.Node<E>
getLastNodeReturned()
Gets the last node returned.boolean
hasNext()
boolean
hasPrevious()
Checks to see if there is a previous element that can be iterated to.E
next()
int
nextIndex()
E
previous()
Gets the previous element from the container.int
previousIndex()
void
remove()
void
set(E obj)
-
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 Detail
-
parent
protected final AbstractLinkedList<E> parent
The parent list
-
next
protected AbstractLinkedList.Node<E> next
The node that will be returned bynext()
. If this is equal toAbstractLinkedList.header
then there are no more values to return.
-
nextIndex
protected int nextIndex
The index ofnext
.
-
current
protected AbstractLinkedList.Node<E> current
The last node that was returned bynext()
orprevious()
. Set tonull
ifnext()
orprevious()
haven't been called, or if the node has been removed withremove()
or a new node added withadd(Object)
. Should be accessed throughgetLastNodeReturned()
to enforce this behaviour.
-
expectedModCount
protected int expectedModCount
The modification count that the list is expected to have. If the list doesn't have this count, then aConcurrentModificationException
may be thrown by the operations.
-
-
Constructor Detail
-
LinkedListIterator
protected LinkedListIterator(AbstractLinkedList<E> parent, int fromIndex) throws IndexOutOfBoundsException
Create a ListIterator for a list.- Parameters:
parent
- the parent listfromIndex
- the index to start at- Throws:
IndexOutOfBoundsException
- if fromIndex is less than 0 or greater than the size of the list
-
-
Method Detail
-
checkModCount
protected void checkModCount()
Checks the modification count of the list is the value that this object expects.- Throws:
ConcurrentModificationException
- If the list's modification count isn't the value that was expected.
-
getLastNodeReturned
protected AbstractLinkedList.Node<E> getLastNodeReturned() throws IllegalStateException
Gets the last node returned.- Returns:
- the last node returned
- Throws:
IllegalStateException
- Ifnext()
orprevious()
haven't been called, or if the node has been removed withremove()
or a new node added withadd(Object)
.
-
hasNext
public boolean hasNext()
-
next
public E next()
-
hasPrevious
public boolean 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>
- Returns:
true
if the iterator has a previous element
-
previous
public E previous()
Description copied from interface:OrderedIterator
Gets the previous element from the container.- Specified by:
previous
in interfaceListIterator<E>
- Specified by:
previous
in interfaceOrderedIterator<E>
- Returns:
- the previous element in the iteration
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfaceListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfaceListIterator<E>
-
remove
public void remove()
-
set
public void set(E obj)
- Specified by:
set
in interfaceListIterator<E>
-
add
public void add(E obj)
- Specified by:
add
in interfaceListIterator<E>
-
-