Class CursorableLinkedList.Cursor
java.lang.Object
org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
org.apache.commons.collections.list.CursorableLinkedList.Cursor
- All Implemented Interfaces:
Iterator,ListIterator,OrderedIterator
- Direct Known Subclasses:
CursorableLinkedList.SubCursor
- Enclosing class:
- CursorableLinkedList
An extended
ListIterator that allows concurrent changes to
the underlying list.-
Field Summary
Fields inherited from class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
current, expectedModCount, next, nextIndex, parent -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCursor(CursorableLinkedList parent, int index) Constructs a new cursor. -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds an object to the list.protected voidOverride superclass modCount check, and replace it with our valid flag.voidclose()Mark this cursor as no longer being needed.intGets the index of the next element to be returned.protected voidHandle event from the list when a node has changed.protected voidHandle event from the list when a node has been added.protected voidHandle event from the list when a node has been removed.voidremove()Removes the item last returned by this iterator.Methods inherited from class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
getLastNodeReturned, hasNext, hasPrevious, next, previous, previousIndex, setMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
Cursor
Constructs a new cursor.- Parameters:
index- the index to start from
-
-
Method Details
-
remove
public void remove()Removes the item last returned by this iterator.There 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().
- Specified by:
removein interfaceIterator- Specified by:
removein interfaceListIterator- Overrides:
removein classAbstractLinkedList.LinkedListIterator- Throws:
IllegalStateException- if there is no item to remove
-
add
Adds an object to the list. The object added here will be the new 'previous' in the iterator.- Specified by:
addin interfaceListIterator- Overrides:
addin classAbstractLinkedList.LinkedListIterator- Parameters:
obj- the object to add
-
nextIndex
public int nextIndex()Gets the index of the next element to be returned.- Specified by:
nextIndexin interfaceListIterator- Overrides:
nextIndexin classAbstractLinkedList.LinkedListIterator- Returns:
- the next index
-
nodeChanged
Handle event from the list when a node has changed.- Parameters:
node- the node that changed
-
nodeRemoved
Handle event from the list when a node has been removed.- Parameters:
node- the node that was removed
-
nodeInserted
Handle event from the list when a node has been added.- Parameters:
node- the node that was added
-
checkModCount
protected void checkModCount()Override superclass modCount check, and replace it with our valid flag.- Overrides:
checkModCountin classAbstractLinkedList.LinkedListIterator
-
close
public void close()Mark this cursor as no longer being needed. Any resources associated with this cursor are immediately released. In previous versions of this class, it was mandatory to close all cursor objects to avoid memory leaks. It is no longer necessary to call this close method; an instance of this class can now be treated exactly like a normal iterator.
-