Uses of Class
com.caucho.db.index.BTree

Packages that use BTree
com.caucho.db.index   
com.caucho.db.table   
 

Uses of BTree in com.caucho.db.index
 

Methods in com.caucho.db.index that return BTree
static BTree BTree.createStringTest(Path path, int keySize)
           
static BTree BTree.createTest(Path path, int keySize)
           
 BTree IndexKey.getBTree()
           
 

Methods in com.caucho.db.index with parameters of type BTree
static IndexKey IndexKey.create(BTree btree, byte[] data, int offset, int length, long value)
           
 void IndexCache.delete(BTree btree, byte[] buffer, int offset, int length, DbTransaction xa)
          Remove the index entry.
 void IndexKey.init(BTree btree, byte[] data, int offset, int length)
           
 void IndexCache.insert(BTree btree, byte[] buffer, int offset, int length, long value, DbTransaction xa)
          Gets the index entry.
 long IndexCache.lookup(BTree btree, byte[] buffer, int offset, int length, DbTransaction xa)
          Gets the index entry.
 

Constructors in com.caucho.db.index with parameters of type BTree
IndexKey(BTree btree, byte[] data, int offset, int length, long value)
           
 

Uses of BTree in com.caucho.db.table
 

Methods in com.caucho.db.table that return BTree
 BTree Column.getIndex()
          Returns the index.
 

Methods in com.caucho.db.table with parameters of type BTree
 void Column.setIndex(BTree index)
          Sets the index.