Uses of Class
org.apache.commons.collections4.list.CursorableLinkedList.Cursor
-
Packages that use CursorableLinkedList.Cursor Package Description org.apache.commons.collections4.list This package contains implementations of theListinterface. -
-
Uses of CursorableLinkedList.Cursor in org.apache.commons.collections4.list
Subclasses of CursorableLinkedList.Cursor in org.apache.commons.collections4.list Modifier and Type Class Description protected static classCursorableLinkedList.SubCursor<E>A cursor for the sublist based on LinkedSubListIterator.Methods in org.apache.commons.collections4.list that return CursorableLinkedList.Cursor Modifier and Type Method Description CursorableLinkedList.Cursor<E>CursorableLinkedList. cursor()Returns aCursorableLinkedList.Cursorfor iterating through the elements of this list.CursorableLinkedList.Cursor<E>CursorableLinkedList. cursor(int fromIndex)Returns aCursorableLinkedList.Cursorfor iterating through the elements of this list starting from a specified index.Methods in org.apache.commons.collections4.list with parameters of type CursorableLinkedList.Cursor Modifier and Type Method Description protected voidCursorableLinkedList. registerCursor(CursorableLinkedList.Cursor<E> cursor)Registers a cursor to be notified of changes to this list.protected voidCursorableLinkedList. unregisterCursor(CursorableLinkedList.Cursor<E> cursor)Deregisters a cursor from the list to be notified of changes.
-