|
dbXML API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BTreeException | |
org.dbxml.core.filer | Defines the dbXML Filer interface and implements several Filers, including BTreeFiler and HashFiler. |
Uses of BTreeException in org.dbxml.core.filer |
Subclasses of BTreeException in org.dbxml.core.filer | |
class |
BTreeCorruptException
A BTreecorruptException is thrown by the BTree if the BTree appears to be corrupted in some way. |
class |
BTreeNotFoundException
A BTreeNotFoundException is thrown by the BTree if a Value can't be found in the BTree. |
Methods in org.dbxml.core.filer that throw BTreeException | |
long |
BTree.addValue(Value value,
long pointer)
addValue adds a Value to the BTree and associates a pointer with it. |
long |
BTree.addValue(BTree.BTreeRootInfo root,
Value value,
long pointer)
addValue adds a Value to the BTree and associates a pointer with it. |
long |
BTree.removeValue(Value value)
removeValue removes a Value from the BTree and returns the associated pointer for it. |
long |
BTree.removeValue(BTree.BTreeRootInfo root,
Value value)
removeValue removes a Value from the BTree and returns the associated pointer for it. |
long |
BTree.findValue(Value value)
findValue finds a Value in the BTree and returns the associated pointer for it. |
long |
BTree.findValue(BTree.BTreeRootInfo root,
Value value)
findValue finds a Value in the BTree and returns the associated pointer for it. |
void |
BTree.query(IndexQuery query,
BTreeCallback callback)
query performs a query against the BTree and performs callback operations to report the search results. |
void |
BTree.query(BTree.BTreeRootInfo root,
IndexQuery query,
BTreeCallback callback)
query performs a query against the BTree and performs callback operations to report the search results. |
|
dbXML API | |||||||||
PREV NEXT | FRAMES NO FRAMES |