Package org.apache.commons.collections
Class CursorableLinkedList.Cursor
- java.lang.Object
-
- org.apache.commons.collections.CursorableLinkedList.Cursor
-
- All Implemented Interfaces:
Iterator,ListIterator
- Enclosing class:
- CursorableLinkedList
@Deprecated(since="2021-04-30") public class CursorableLinkedList.Cursor extends Object implements ListIterator
Deprecated.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(Object o)Deprecated.voidclose()Deprecated.Mark this cursor as no longer being needed.booleanhasNext()Deprecated.booleanhasPrevious()Deprecated.Objectnext()Deprecated.intnextIndex()Deprecated.Objectprevious()Deprecated.intpreviousIndex()Deprecated.voidremove()Deprecated.voidset(Object o)Deprecated.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Methods inherited from interface java.util.ListIterator
hasNext, hasPrevious, next, previous, remove, set
-
-
-
-
Method Detail
-
previousIndex
public int previousIndex()
Deprecated.- Specified by:
previousIndexin interfaceListIterator
-
nextIndex
public int nextIndex()
Deprecated.- Specified by:
nextIndexin interfaceListIterator
-
add
public void add(Object o)
Deprecated.- Specified by:
addin interfaceListIterator
-
close
public void close()
Deprecated.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.
-
previous
public Object previous()
Deprecated.- Specified by:
previousin interfaceListIterator
-
hasNext
public boolean hasNext()
Deprecated.- Specified by:
hasNextin interfaceIterator- Specified by:
hasNextin interfaceListIterator
-
next
public Object next()
Deprecated.- Specified by:
nextin interfaceIterator- Specified by:
nextin interfaceListIterator
-
hasPrevious
public boolean hasPrevious()
Deprecated.- Specified by:
hasPreviousin interfaceListIterator
-
set
public void set(Object o)
Deprecated.- Specified by:
setin interfaceListIterator
-
remove
public void remove()
Deprecated.- Specified by:
removein interfaceIterator- Specified by:
removein interfaceListIterator
-
-