Uses of Class
org.apache.commons.collections.CursorableLinkedList.Cursor
-
Packages that use CursorableLinkedList.Cursor Package Description org.apache.commons.collections This package contains the interfaces and utilities shared across all the subpackages of this component. -
-
Uses of CursorableLinkedList.Cursor in org.apache.commons.collections
Methods in org.apache.commons.collections that return CursorableLinkedList.Cursor Modifier and Type Method Description CursorableLinkedList.Cursor
CursorableLinkedList. cursor()
Deprecated.Returns aListIterator
for iterating through the elements of this list.CursorableLinkedList.Cursor
CursorableLinkedList. cursor(int i)
Deprecated.Returns aListIterator
for iterating through the elements of this list, initialized such thatListIterator.next()
will return the element at the specified index (if any) andListIterator.previous()
will return the element immediately preceding it (if any).Methods in org.apache.commons.collections with parameters of type CursorableLinkedList.Cursor Modifier and Type Method Description protected void
CursorableLinkedList. registerCursor(CursorableLinkedList.Cursor cur)
Deprecated.Registers aCursorableLinkedList.Cursor
to be notified of changes to this list.protected void
CursorableLinkedList. unregisterCursor(CursorableLinkedList.Cursor cur)
Deprecated.Removes aCursorableLinkedList.Cursor
from the set of cursors to be notified of changes to this list.
-