Package org.apache.commons.pool.impl
Class CursorableLinkedList.Cursor
java.lang.Object
CursorableLinkedList<E>.org.apache.commons.pool.impl.CursorableLinkedList.ListIter
org.apache.commons.pool.impl.CursorableLinkedList.Cursor
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
- Enclosing class:
CursorableLinkedList<E>
public class CursorableLinkedList.Cursor
extends CursorableLinkedList<E>.ListIter
implements ListIterator<E>
-
Field Summary
FieldsFields inherited from class org.apache.commons.pool.impl.CursorableLinkedList.ListIter
_cur, _expectedModCount, _lastReturned, _nextIndex
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
protected void
void
close()
Mark this cursor as no longer being needed.protected void
protected void
protected void
protected void
int
int
Methods inherited from class org.apache.commons.pool.impl.CursorableLinkedList.ListIter
hasNext, hasPrevious, next, previous, remove, set
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
-
Field Details
-
_valid
boolean _valid
-
-
Constructor Details
-
Cursor
Cursor(int index)
-
-
Method Details
-
previousIndex
public int previousIndex()- Specified by:
previousIndex
in interfaceListIterator<E>
- Overrides:
previousIndex
in classCursorableLinkedList<E>.ListIter
-
nextIndex
public int nextIndex()- Specified by:
nextIndex
in interfaceListIterator<E>
- Overrides:
nextIndex
in classCursorableLinkedList<E>.ListIter
-
add
- Specified by:
add
in interfaceListIterator<E>
- Overrides:
add
in classCursorableLinkedList<E>.ListIter
-
listableRemoved
-
listableInserted
-
listableChanged
-
checkForComod
protected void checkForComod()- Overrides:
checkForComod
in classCursorableLinkedList<E>.ListIter
-
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.
-