Uses of Class
org.apache.lucene.util.packed.PackedLongValues
-
Packages that use PackedLongValues Package Description org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.util.packed Packed integer arrays and streams. -
-
Uses of PackedLongValues in org.apache.lucene.index
Fields in org.apache.lucene.index declared as PackedLongValues Modifier and Type Field Description private PackedLongValues
BinaryDocValuesWriter. finalLengths
private PackedLongValues
SortedSetDocValuesWriter. finalOrdCounts
private PackedLongValues
SortedDocValuesWriter. finalOrds
private PackedLongValues
SortedSetDocValuesWriter. finalOrds
private PackedLongValues
NumericDocValuesWriter. finalValues
private PackedLongValues
SortedNumericDocValuesWriter. finalValues
private PackedLongValues
SortedNumericDocValuesWriter. finalValuesCount
(package private) PackedLongValues
SortedSetDocValuesWriter.DocOrds. ords
(package private) PackedLongValues
SortedNumericDocValuesWriter.LongValues. values
Methods in org.apache.lucene.index that return PackedLongValues Modifier and Type Method Description (package private) static PackedLongValues
MergeState. removeDeletes(int maxDoc, Bits liveDocs)
Methods in org.apache.lucene.index with parameters of type PackedLongValues Modifier and Type Method Description (package private) static DocValuesProducer
NumericDocValuesWriter. getDocValuesProducer(FieldInfo writerFieldInfo, PackedLongValues values, DocsWithFieldSet docsWithField, Sorter.DocMap sortMap)
(package private) static DocValuesProducer
SortedDocValuesWriter. getDocValuesProducer(FieldInfo writerFieldInfo, BytesRefHash hash, PackedLongValues ords, int[] sortedValues, int[] ordMap, DocsWithFieldSet docsWithField, Sorter.DocMap sortMap)
private SortedNumericDocValues
SortedNumericDocValuesWriter. getValues(PackedLongValues values, PackedLongValues valueCounts, DocsWithFieldSet docsWithField)
private SortedSetDocValues
SortedSetDocValuesWriter. getValues(int[] sortedValues, int[] ordMap, BytesRefHash hash, PackedLongValues ords, PackedLongValues ordCounts, int maxCount, DocsWithFieldSet docsWithField)
Constructors in org.apache.lucene.index with parameters of type PackedLongValues Constructor Description BufferedBinaryDocValues(PackedLongValues lengths, int maxLength, DataInput bytesIterator, DocIdSetIterator docsWithFields)
BufferedNorms(PackedLongValues values, DocIdSetIterator docsWithFields)
BufferedNumericDocValues(PackedLongValues values, DocIdSetIterator docsWithFields)
BufferedSortedDocValues(BytesRefHash hash, PackedLongValues docToOrd, int[] sortedValues, int[] ordMap, DocIdSetIterator docsWithField)
BufferedSortedNumericDocValues(PackedLongValues values, PackedLongValues valueCounts, DocIdSetIterator docsWithField)
BufferedSortedSetDocValues(int[] sortedValues, int[] ordMap, BytesRefHash hash, PackedLongValues ords, PackedLongValues ordCounts, int maxCount, DocIdSetIterator docsWithField)
-
Uses of PackedLongValues in org.apache.lucene.util.packed
Subclasses of PackedLongValues in org.apache.lucene.util.packed Modifier and Type Class Description (package private) class
DeltaPackedLongValues
(package private) class
MonotonicLongValues
Methods in org.apache.lucene.util.packed that return PackedLongValues Modifier and Type Method Description PackedLongValues
PackedLongValues.Builder. build()
Build aPackedLongValues
instance that contains values that have been added to this builder.
-