Uses of Interface
org.apache.accumulo.core.client.lexicoder.Lexicoder
Package
Description
-
Uses of Lexicoder in org.apache.accumulo.core.client.lexicoder
Modifier and TypeClassDescriptionclass
A lexicoder to encode/decode a BigInteger to/from bytes that maintain its native Java sort order.class
For each of the methods, this lexicoder just passes the input through untouched.class
A lexicoder for date objects.class
A lexicoder for preserving the native Java sort order of Double values.class
A lexicoder for preserving the native Java sort order of Float values.class
A lexicoder for signed integers.class
ListLexicoder<LT>
A lexicoder to encode/decode a Java List to/from a byte array where the concatenation of each encoded element sorts lexicographically.class
Signed long lexicoder.class
PairLexicoder<A extends Comparable<A>,
B extends Comparable<B>> This class is a lexicoder that sorts a ComparablePair.class
A lexicoder that flips the sort order from another lexicoder.class
This lexicoder encodes/decodes a given String to/from bytes without further processing.class
A lexicoder that preserves a Text's native sort order.class
A lexicoder for an unsigned integer.class
Unsigned long lexicoder.class
A lexicoder for a UUID that maintains its lexicographic sorting order.ModifierConstructorDescriptionListLexicoder
(Lexicoder<LT> lexicoder) PairLexicoder
(Lexicoder<A> firstLexicoder, Lexicoder<B> secondLexicoder) ReverseLexicoder
(Lexicoder<T> lexicoder) -
Uses of Lexicoder in org.apache.accumulo.core.client.lexicoder.impl
Modifier and TypeClassDescriptionclass
org.apache.accumulo.core.client.lexicoder.impl.AbstractLexicoder<T>