Uses of Class
org.apache.lucene.util.encoding.IntDecoder
-
Packages that use IntDecoder Package Description org.apache.lucene.facet.search Faceted Search APIorg.apache.lucene.util.encoding Offers various encoders and decoders for integers, as well as the mechanisms to create new ones. -
-
Uses of IntDecoder in org.apache.lucene.facet.search
Constructors in org.apache.lucene.facet.search with parameters of type IntDecoder Constructor Description PayloadIntDecodingIterator(org.apache.lucene.index.IndexReader indexReader, org.apache.lucene.index.Term term, IntDecoder decoder)
PayloadIntDecodingIterator(org.apache.lucene.index.IndexReader indexReader, org.apache.lucene.index.Term term, IntDecoder decoder, byte[] buffer)
-
Uses of IntDecoder in org.apache.lucene.util.encoding
Subclasses of IntDecoder in org.apache.lucene.util.encoding Modifier and Type Class Description class
DGapIntDecoder
AnIntDecoder
which wraps anotherIntDecoder
and reverts the d-gap that was encoded byDGapIntEncoder
.class
EightFlagsIntDecoder
Decodes data which was encoded byEightFlagsIntEncoder
.class
FourFlagsIntDecoder
Decodes data which was encoded byFourFlagsIntEncoder
.class
NOnesIntDecoder
Decodes data which was encoded byNOnesIntEncoder
.class
SimpleIntDecoder
A simple stream decoder which can decode values encoded withSimpleIntEncoder
.class
VInt8IntDecoder
AnIntDecoder
which can decode values encoded byVInt8IntEncoder
.Methods in org.apache.lucene.util.encoding that return IntDecoder Modifier and Type Method Description IntDecoder
DGapIntEncoder. createMatchingDecoder()
IntDecoder
EightFlagsIntEncoder. createMatchingDecoder()
IntDecoder
FourFlagsIntEncoder. createMatchingDecoder()
abstract IntDecoder
IntEncoder. createMatchingDecoder()
Returns anIntDecoder
which matches this encoder.IntDecoder
NOnesIntEncoder. createMatchingDecoder()
IntDecoder
SimpleIntEncoder. createMatchingDecoder()
IntDecoder
SortingIntEncoder. createMatchingDecoder()
IntDecoder
UniqueValuesIntEncoder. createMatchingDecoder()
IntDecoder
VInt8IntEncoder. createMatchingDecoder()
Constructors in org.apache.lucene.util.encoding with parameters of type IntDecoder Constructor Description DGapIntDecoder(IntDecoder decoder)
-