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 IntEncoderCategoryListParams. 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 classChunksIntEncoderAnIntEncoderwhich encodes values in chunks.classDGapIntEncoderAnIntEncoderFilterwhich encodes the gap between the given values, rather than the values themselves.classEightFlagsIntEncoderAChunksIntEncoderwhich encodes data in chunks of 8.classFourFlagsIntEncoderAChunksIntEncoderwhich encodes values in chunks of 4.classIntEncoderFilterAn abstract implementation ofIntEncoderwhich is served as a filter on the values to encode.classNOnesIntEncoderA variation ofFourFlagsIntEncoderwhich translates the data as follows: Values ≥ 2 are trnalsated tovalue+1(2 ⇒ 3, 3 ⇒ 4 and so forth).classSimpleIntEncoderA simpleIntEncoder, writing an integer as 4 raw bytes.classSortingIntEncoderAnIntEncoderFilterwhich sorts the values to encode in ascending order before encoding them.classUniqueValuesIntEncoderAnIntEncoderFilterwhich ensures only unique values are encoded.classVInt8IntEncoderAnIntEncoderwhich implements variable length encoding.Fields in org.apache.lucene.util.encoding declared as IntEncoder Modifier and Type Field Description protected IntEncoderChunksIntEncoder. encoderEncoder used to encode values outside the indicator.protected IntEncoderIntEncoderFilter. encoderConstructors 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.
-