Class AbstractLinkedList.LinkedListIterator
- java.lang.Object
-
- org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
-
- All Implemented Interfaces:
Iterator,ListIterator,OrderedIterator
- Direct Known Subclasses:
AbstractLinkedList.LinkedSubListIterator,CursorableLinkedList.Cursor
- Enclosing class:
- AbstractLinkedList
protected static class AbstractLinkedList.LinkedListIterator extends Object implements ListIterator, OrderedIterator
A list iterator over the linked list.
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractLinkedList.NodecurrentThe last node that was returned bynext()orprevious().protected intexpectedModCountThe modification count that the list is expected to have.protected AbstractLinkedList.NodenextThe node that will be returned bynext().protected intnextIndexThe index ofnext.protected AbstractLinkedListparentThe parent list
-
Constructor Summary
Constructors Modifier Constructor Description protectedLinkedListIterator(AbstractLinkedList parent, int fromIndex)Create a ListIterator for a list.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(Object obj)protected voidcheckModCount()Checks the modification count of the list is the value that this object expects.protected AbstractLinkedList.NodegetLastNodeReturned()Gets the last node returned.booleanhasNext()booleanhasPrevious()Checks to see if there is a previous element that can be iterated to.Objectnext()intnextIndex()Objectprevious()Gets the previous element from the collection.intpreviousIndex()voidremove()voidset(Object 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 parent
The parent list
-
next
protected AbstractLinkedList.Node next
The node that will be returned bynext(). If this is equal toAbstractLinkedList.headerthen there are no more values to return.
-
nextIndex
protected int nextIndex
The index ofnext.
-
current
protected AbstractLinkedList.Node current
The last node that was returned bynext()orprevious(). Set tonullifnext()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 aConcurrentModificationExceptionmay be thrown by the operations.
-
-
Constructor Detail
-
LinkedListIterator
protected LinkedListIterator(AbstractLinkedList parent, int fromIndex) throws IndexOutOfBoundsException
Create a ListIterator for a list.- Parameters:
parent- the parent listfromIndex- the index to start at- Throws:
IndexOutOfBoundsException
-
-
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 getLastNodeReturned() throws IllegalStateException
Gets 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()
- Specified by:
hasNextin interfaceIterator- Specified by:
hasNextin interfaceListIterator
-
next
public Object next()
- Specified by:
nextin interfaceIterator- Specified by:
nextin interfaceListIterator
-
hasPrevious
public boolean hasPrevious()
Description copied from interface:OrderedIteratorChecks to see if there is a previous element that can be iterated to.- Specified by:
hasPreviousin interfaceListIterator- Specified by:
hasPreviousin interfaceOrderedIterator- Returns:
trueif the iterator has a previous element
-
previous
public Object previous()
Description copied from interface:OrderedIteratorGets the previous element from the collection.- Specified by:
previousin interfaceListIterator- Specified by:
previousin interfaceOrderedIterator- Returns:
- the previous element in the iteration
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator
-
remove
public void remove()
- Specified by:
removein interfaceIterator- Specified by:
removein interfaceListIterator
-
set
public void set(Object obj)
- Specified by:
setin interfaceListIterator
-
add
public void add(Object obj)
- Specified by:
addin interfaceListIterator
-
-