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
-
Method Summary
Modifier and TypeMethodDescriptionvoid
protected void
void
close()
Mark this cursor as no longer being needed.boolean
hasNext()
boolean
protected void
protected void
listableChanged
(org.apache.commons.collections.CursorableLinkedList.Listable elt) protected void
listableInserted
(org.apache.commons.collections.CursorableLinkedList.Listable elt) protected void
listableRemoved
(org.apache.commons.collections.CursorableLinkedList.Listable elt) next()
int
previous()
int
void
remove()
void
Methods inherited from class java.lang.Object
clone, equals, finalize, 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 Details
-
previousIndex
public int previousIndex()- Specified by:
previousIndex
in interfaceListIterator
-
nextIndex
public int nextIndex()- Specified by:
nextIndex
in interfaceListIterator
-
add
- Specified by:
add
in interfaceListIterator
-
listableRemoved
protected void listableRemoved(org.apache.commons.collections.CursorableLinkedList.Listable elt) -
listableInserted
protected void listableInserted(org.apache.commons.collections.CursorableLinkedList.Listable elt) -
listableChanged
protected void listableChanged(org.apache.commons.collections.CursorableLinkedList.Listable elt) -
checkForComod
protected void checkForComod() -
invalidate
protected void invalidate() -
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. -
previous
- Specified by:
previous
in interfaceListIterator
-
hasNext
public boolean hasNext()- Specified by:
hasNext
in interfaceIterator
- Specified by:
hasNext
in interfaceListIterator
-
next
- Specified by:
next
in interfaceIterator
- Specified by:
next
in interfaceListIterator
-
hasPrevious
public boolean hasPrevious()- Specified by:
hasPrevious
in interfaceListIterator
-
set
- Specified by:
set
in interfaceListIterator
-
remove
public void remove()- Specified by:
remove
in interfaceIterator
- Specified by:
remove
in interfaceListIterator
-