Uses of Class
org.apache.directory.server.core.schema.SerializableComparator

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

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

Methods in org.apache.directory.server.core.partition.impl.btree that return SerializableComparator
 SerializableComparator KeyOnlyComparator.getKeyComparator()
          Gets the comparator used to compare keys.
 SerializableComparator KeyOnlyComparator.getValueComparator()
          Will throw an UnsupportedOperationException every time.
 SerializableComparator IndexComparator.getKeyComparator()
          Gets the comparator used to compare keys.
 SerializableComparator IndexComparator.getValueComparator()
          Gets the binary comparator used to compare valuess.
 SerializableComparator TupleComparator.getKeyComparator()
          Gets the comparator used to compare keys.
 SerializableComparator TupleComparator.getValueComparator()
          Gets the binary comparator used to compare valuess.
 

Constructors in org.apache.directory.server.core.partition.impl.btree with parameters of type SerializableComparator
KeyOnlyComparator(SerializableComparator comparator)
           
IndexComparator(SerializableComparator keyComp, boolean isForwardMap)
          Creates an IndexComparator.
 

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

Constructors in org.apache.directory.server.core.partition.impl.btree.jdbm with parameters of type SerializableComparator
JdbmTable(java.lang.String name, RecordManager manager, SerializableComparator keyComparator)
          Creates a Jdbm BTree based tuple Table abstraction without duplicates enabled using a simple key comparator.