Uses of Interface
com.semedy.reasoner.edb.persistentstore.bplustree.LeafFactory
-
Uses of LeafFactory in com.semedy.reasoner.edb.persistentstore.bplustree
Modifier and TypeClassDescriptionclass
class
class
class
ModifierConstructorDescriptionBPlusTree
(String filename, int numberOfKeys, int keyLengthInBytes, KeysFactory<KeyType, KeyBufferType> keysFactory, LeafFactory<KeyType, KeyBufferType> leafFactory, int additionalHeadSpace, long[] grounds, boolean compress) Initializes a fixed key number and fixed key length treeBPlusTree
(String filename, int numberOfKeys, KeysFactory<KeyType, KeyBufferType> keysFactory, int nodeLengthInBytes, LeafFactory<KeyType, KeyBufferType> leafFactory, long[] grounds, boolean compress) Initializes a variable key number, key length treeBPlusTreeFile
(String filename, int m, int keyLengthInBytes, int nodeLengthInBytes, KeysFactory<KeyType, KeyBufferType> keysFactory, LeafFactory<KeyType, KeyBufferType> leafFactory, BPlusTree<KeyType, KeyBufferType> bplustree, int additionalHeadSpace, boolean compress) General constructor.