Uses of Interface
org.apache.directory.server.core.partition.impl.btree.TupleComparator

Packages that use TupleComparator
org.apache.directory.server.core.partition.impl.btree   
org.apache.directory.server.core.partition.impl.btree.jdbm   
 

Uses of TupleComparator in org.apache.directory.server.core.partition.impl.btree
 

Classes in org.apache.directory.server.core.partition.impl.btree that implement TupleComparator
 class IndexComparator
          TupleComparator for index records.
 class KeyOnlyComparator
          A TupleComparator that compares keys only.
 

Methods in org.apache.directory.server.core.partition.impl.btree that return TupleComparator
 TupleComparator Table.getComparator()
          Gets the comparator used by this Table: may be null if this Table was not initialized with one.
 

Uses of TupleComparator in org.apache.directory.server.core.partition.impl.btree.jdbm
 

Methods in org.apache.directory.server.core.partition.impl.btree.jdbm that return TupleComparator
 TupleComparator JdbmTable.getComparator()
           
 

Constructors in org.apache.directory.server.core.partition.impl.btree.jdbm with parameters of type TupleComparator
JdbmTable(java.lang.String name, boolean allowsDuplicates, int numDupLimit, RecordManager manager, TupleComparator comparator)
          Creates a Jdbm BTree based tuple Table abstraction that enables duplicates.