Uses of Class
org.apache.commons.collections4.list.CursorableLinkedList.Cursor
Packages that use CursorableLinkedList.Cursor
-
Uses of CursorableLinkedList.Cursor in org.apache.commons.collections4.list
Subclasses of CursorableLinkedList.Cursor in org.apache.commons.collections4.listModifier and TypeClassDescriptionprotected static class
A cursor for the sublist based on LinkedSubListIterator.Fields in org.apache.commons.collections4.list with type parameters of type CursorableLinkedList.CursorModifier and TypeFieldDescriptionprivate List
<WeakReference<CursorableLinkedList.Cursor<E>>> CursorableLinkedList.cursors
A list of the cursor currently open on this listMethods in org.apache.commons.collections4.list that return CursorableLinkedList.CursorModifier and TypeMethodDescriptionCursorableLinkedList.cursor()
Returns aCursorableLinkedList.Cursor
for iterating through the elements of this list.CursorableLinkedList.cursor
(int fromIndex) Returns aCursorableLinkedList.Cursor
for iterating through the elements of this list starting from a specified index.Methods in org.apache.commons.collections4.list with parameters of type CursorableLinkedList.CursorModifier and TypeMethodDescriptionprotected void
CursorableLinkedList.registerCursor
(CursorableLinkedList.Cursor<E> cursor) Registers a cursor to be notified of changes to this list.protected void
CursorableLinkedList.unregisterCursor
(CursorableLinkedList.Cursor<E> cursor) Deregisters a cursor from the list to be notified of changes.