| Package | Description |
|---|---|
| jdbm.btree |
B+Tree (scalable persistent tree) data structure implementation.
|
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
BPage.Browser
PRIVATE INNER CLASS
Browser to traverse leaf BPages.
|
(package private) class |
BTree.EmptyBrowser
PRIVATE INNER CLASS
Browser returning no element.
|
| Modifier and Type | Method and Description |
|---|---|
TupleBrowser<K,V> |
BTree.browse()
Get a browser initially positioned at the beginning of the BTree.
|
TupleBrowser<K,V> |
BTree.browse(K key)
Get a browser initially positioned just before the given key.
|
(package private) TupleBrowser<K,V> |
BPage.find(int height,
K key,
ActionContext context)
Find the object associated with the given key.
|
(package private) TupleBrowser<K,V> |
BPage.findFirst(ActionContext context)
Find first entry and return a browser positioned before it.
|