Uses of Interface
org.apache.accumulo.core.client.lexicoder.Encoder
Package
Description
-
Uses of Encoder in org.apache.accumulo.core.client.lexicoder
Modifier and TypeInterfaceDescriptioninterface
Lexicoder<T>
A lexicoder provides methods to convert to/from byte arrays.Modifier and TypeClassDescriptionclass
AbstractEncoder is anEncoder
that implements all of Encoder's methods validating the input, but has those methods defer logic to to a new method,AbstractEncoder.decodeUnchecked(byte[], int, int)
.class
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. -
Uses of Encoder in org.apache.accumulo.core.client.lexicoder.impl
Modifier and TypeClassDescriptionclass
org.apache.accumulo.core.client.lexicoder.impl.AbstractLexicoder<T>