Package | Description |
---|---|
org.apache.directory.mavibot.btree |
Modifier and Type | Method and Description |
---|---|
org.apache.directory.mavibot.btree.Page |
RecordManager.deserialize(BTree btree,
long offset) |
E |
ReferenceHolder.getValue(BTree<K,V> btree)
Get back the element
|
E |
ElementHolder.getValue(BTree<K,V> btree)
Get back the element
|
boolean |
Cursor.hasNext()
Tells if the cursor can return a next element
|
boolean |
Cursor.hasPrev()
Tells if the cursor can return a previous element
|
void |
Cursor.moveToNextNonDuplicateKey()
Moves the cursor to the next non-duplicate key.
|
void |
Cursor.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> |
Cursor.next()
Find the next key/value
|
Tuple<K,V> |
Cursor.prev()
Find the previous key/value
|
Copyright © 2012-2013 Apache Mavibot Project Parent. All Rights Reserved.