Uses of Class
org.axiondb.util.ObjectBTree

Packages that use ObjectBTree
org.axiondb.engine.indexes   
org.axiondb.util Utility classes. 
 

Uses of ObjectBTree in org.axiondb.engine.indexes
 

Methods in org.axiondb.engine.indexes that return ObjectBTree
protected  ObjectBTree ObjectBTreeIndex.createTree(java.io.File dataDirectory, java.lang.String name, int minimizationFactor, DataType dataType)
           
protected  ObjectBTree StringBTreeIndex.createTree(java.io.File dataDirectory, java.lang.String name, int minimizationFactor, DataType dataType)
           
 ObjectBTree ObjectBTreeIndex.getBTree()
           
 

Uses of ObjectBTree in org.axiondb.util
 

Subclasses of ObjectBTree in org.axiondb.util
 class StringBTree
          An ObjectBTreeoptimized for reading and writing Strings.
 

Methods in org.axiondb.util that return ObjectBTree
protected  ObjectBTree ObjectBTree.createNode(org.axiondb.util.BTreeMetaData meta, java.util.Comparator comp)
          Create a new node.
protected  ObjectBTree StringBTree.createNode(org.axiondb.util.BTreeMetaData meta, java.util.Comparator comp)
           
protected  ObjectBTree ObjectBTree.loadNode(org.axiondb.util.BTreeMetaData meta, java.util.Comparator comp, int fileId)
          Read the node with the specified fileId from disk.
protected  ObjectBTree StringBTree.loadNode(org.axiondb.util.BTreeMetaData meta, java.util.Comparator comp, int fileId)