com.sleepycat.collections
Interface BaseIterator
interface
BaseIterator
extends ListIterator
Common interface for BlockIterator and StoredIterator.
| Method Summary |
| ListIterator | dup()
Duplicate a cursor. |
| boolean | isCurrentData(Object currentData)
Returns whether the given data is the current iterator data. |
| boolean | moveToIndex(int index)
Initializes a list iterator at the given index. |
public ListIterator dup()
Duplicate a cursor. Called by StoredCollections.iterator.
public boolean isCurrentData(Object currentData)
Returns whether the given data is the current iterator data. Called by
StoredMapEntry.setValue.
public boolean moveToIndex(int index)
Initializes a list iterator at the given index. Called by
StoredList.iterator(int).