Class ReverseLexicoder<T>
java.lang.Object
org.apache.accumulo.core.client.lexicoder.AbstractEncoder<T>
org.apache.accumulo.core.client.lexicoder.AbstractLexicoder<T>
org.apache.accumulo.core.client.lexicoder.ReverseLexicoder<T>
A lexicoder that flips the sort order from another lexicoder. If this is applied to
DateLexicoder
, the most recent date will be sorted first and the oldest date will be
sorted last. If it's applied to LongLexicoder
, the Long.MAX_VALUE will be sorted first
and Long.MIN_VALUE will be sorted last, etc...- Since:
- 1.6.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected T
decodeUnchecked
(byte[] data, int offset, int len) Decodes a byte array without checking if the offset and len exceed the bounds of the actual array.byte[]
Methods inherited from class org.apache.accumulo.core.client.lexicoder.AbstractEncoder
decode, decode
-
Constructor Details
-
ReverseLexicoder
- Parameters:
lexicoder
- The lexicoder who's sort order will be flipped.
-
-
Method Details
-
encode
-
decodeUnchecked
Description copied from class:AbstractEncoder
Decodes a byte array without checking if the offset and len exceed the bounds of the actual array.- Specified by:
decodeUnchecked
in classAbstractEncoder<T>
-