Uses of Class
org.apache.lucene.util.encoding.IntEncoder
-
Packages that use IntEncoder Package Description org.apache.lucene.facet.index Indexing of document categoriesorg.apache.lucene.facet.index.params Indexing-time specifications for handling facetsorg.apache.lucene.util.encoding Offers various encoders and decoders for integers, as well as the mechanisms to create new ones. -
-
Uses of IntEncoder in org.apache.lucene.facet.index
Constructors in org.apache.lucene.facet.index with parameters of type IntEncoder Constructor Description CategoryListPayloadStream(IntEncoder encoder)
Creates a Payload stream using the specified encoder. -
Uses of IntEncoder in org.apache.lucene.facet.index.params
Methods in org.apache.lucene.facet.index.params that return IntEncoder Modifier and Type Method Description IntEncoder
CategoryListParams. createEncoder()
Allows to override how categories are encoded and decoded. -
Uses of IntEncoder in org.apache.lucene.util.encoding
Subclasses of IntEncoder in org.apache.lucene.util.encoding Modifier and Type Class Description class
ChunksIntEncoder
AnIntEncoder
which encodes values in chunks.class
DGapIntEncoder
AnIntEncoderFilter
which encodes the gap between the given values, rather than the values themselves.class
EightFlagsIntEncoder
AChunksIntEncoder
which encodes data in chunks of 8.class
FourFlagsIntEncoder
AChunksIntEncoder
which encodes values in chunks of 4.class
IntEncoderFilter
An abstract implementation ofIntEncoder
which is served as a filter on the values to encode.class
NOnesIntEncoder
A variation ofFourFlagsIntEncoder
which translates the data as follows: Values ≥ 2 are trnalsated tovalue+1
(2 ⇒ 3, 3 ⇒ 4 and so forth).class
SimpleIntEncoder
A simpleIntEncoder
, writing an integer as 4 raw bytes.class
SortingIntEncoder
AnIntEncoderFilter
which sorts the values to encode in ascending order before encoding them.class
UniqueValuesIntEncoder
AnIntEncoderFilter
which ensures only unique values are encoded.class
VInt8IntEncoder
AnIntEncoder
which implements variable length encoding.Fields in org.apache.lucene.util.encoding declared as IntEncoder Modifier and Type Field Description protected IntEncoder
ChunksIntEncoder. encoder
Encoder used to encode values outside the indicator.protected IntEncoder
IntEncoderFilter. encoder
Constructors in org.apache.lucene.util.encoding with parameters of type IntEncoder Constructor Description DGapIntEncoder(IntEncoder encoder)
Initializes with the given encoder.IntEncoderFilter(IntEncoder encoder)
SortingIntEncoder(IntEncoder encoder)
Initializes with the given encoder.UniqueValuesIntEncoder(IntEncoder encoder)
Constructs a new instance with the given encoder.
-