Uses of Interface
org.apache.accumulo.core.client.lexicoder.Lexicoder
-
Packages that use Lexicoder Package Description org.apache.accumulo.core.client.lexicoder org.apache.accumulo.core.iterators org.apache.accumulo.core.iterators.user -
-
Uses of Lexicoder in org.apache.accumulo.core.client.lexicoder
Classes in org.apache.accumulo.core.client.lexicoder that implement Lexicoder Modifier and Type Class Description classAbstractLexicoder<T>classBigIntegerLexicoderA lexicoder to encode/decode a BigInteger to/from bytes that maintain its native Java sort order.classBytesLexicoderFor each of the methods, this lexicoder just passes the input through untouched.classDateLexicoderA lexicoder for date objects.classDoubleLexicoderA lexicoder for preserving the native Java sort order of Double values.classFloatLexicoderA lexicoder for preserving the native Java sort order of Float values.classIntegerLexicoderA lexicoder for signed integers.classListLexicoder<LT>A lexicoder to encode/decode a Java List to/from a byte array where the concatenation of each encoded element sorts lexicographically.classLongLexicoderSigned long lexicoder.classPairLexicoder<A extends Comparable<A>,B extends Comparable<B>>This class is a lexicoder that sorts a ComparablePair.classReverseLexicoder<T>A lexicoder that flips the sort order from another lexicoder.classSequenceLexicoder<E>A Lexicoder to encode/decode a Java List to/from a byte array where the concatenation of each encoded element sorts lexicographically.classStringLexicoderThis lexicoder encodes/decodes a given String to/from bytes without further processing.classTextLexicoderA lexicoder that preserves a Text's native sort order.classUIntegerLexicoderA lexicoder for an unsigned integer.classULongLexicoderUnsigned long lexicoder.classUUIDLexicoderA lexicoder for a UUID that maintains its lexicographic sorting order.Constructors in org.apache.accumulo.core.client.lexicoder with parameters of type Lexicoder Constructor Description ListLexicoder(Lexicoder<LT> lexicoder)PairLexicoder(Lexicoder<A> firstLexicoder, Lexicoder<B> secondLexicoder)ReverseLexicoder(Lexicoder<T> lexicoder)SequenceLexicoder(Lexicoder<E> elementLexicoder)Primary constructor. -
Uses of Lexicoder in org.apache.accumulo.core.iterators
Classes in org.apache.accumulo.core.iterators that implement Lexicoder Modifier and Type Class Description static classLongCombiner.FixedLenEncoderAn Encoder that uses an 8-byte encoding for Longs.static classLongCombiner.StringEncoderAn Encoder that uses a String representation of Longs.static classLongCombiner.VarLenEncoderAn Encoder that uses a variable-length encoding for Longs. -
Uses of Lexicoder in org.apache.accumulo.core.iterators.user
Classes in org.apache.accumulo.core.iterators.user that implement Lexicoder Modifier and Type Class Description static classBigDecimalCombiner.BigDecimalEncoderProvides the ability to encode scientific notation.static classSummingArrayCombiner.DOSArrayEncoder<V>static classSummingArrayCombiner.FixedLongArrayEncoderstatic classSummingArrayCombiner.VarLongArrayEncoder
-