K
- The type for the KeyV
- The type for the stored valuepublic interface TupleCursor<K,V> extends Cursor<K>
method. The cursor must be closed
when the user is done with it.
Modifier and Type | Method and Description |
---|---|
long |
getCreationDate() |
long |
getRevision() |
void |
moveToNextNonDuplicateKey()
Moves the cursor to the next non-duplicate key.
|
void |
moveToPrevNonDuplicateKey()
Moves the cursor to the previous non-duplicate key
If the BTree contains
<1,0>
<1,1>
<2,0>
<2,1>
and cursor is present at <2,1> then the cursor will move to <1,1>
|
Tuple<K,V> |
next()
Find the next key/value
|
Tuple<K,V> |
prev()
Find the previous key/value
|
Tuple<K,V> next() throws EndOfFileExceededException, IOException
IOException
EndOfFileExceededException
Tuple<K,V> prev() throws EndOfFileExceededException, IOException
IOException
EndOfFileExceededException
long getRevision()
long getCreationDate()
void moveToNextNonDuplicateKey() throws EndOfFileExceededException, IOException
void moveToPrevNonDuplicateKey() throws EndOfFileExceededException, IOException
Copyright © 2012-2013 Apache Mavibot Project Parent. All Rights Reserved.