Uses of Class
org.apache.lucene.index.NumericDocValues
-
Packages that use NumericDocValues Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene45 Lucene 4.5 file format.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.util Some utility classes.org.apache.lucene.util.packed Packed integer arrays and streams. -
-
Uses of NumericDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return NumericDocValues Modifier and Type Method Description abstract NumericDocValuesDocValuesProducer. getNumeric(FieldInfo field)ReturnsNumericDocValuesfor this field.Method parameters in org.apache.lucene.codecs with type arguments of type NumericDocValues Modifier and Type Method Description voidDocValuesConsumer. mergeNumericField(FieldInfo fieldInfo, MergeState mergeState, List<NumericDocValues> toMerge, List<Bits> docsWithField)Merges the numeric docvalues fromtoMerge. -
Uses of NumericDocValues in org.apache.lucene.codecs.lucene45
Methods in org.apache.lucene.codecs.lucene45 that return NumericDocValues Modifier and Type Method Description NumericDocValuesLucene45DocValuesProducer. getNumeric(FieldInfo field) -
Uses of NumericDocValues in org.apache.lucene.index
Fields in org.apache.lucene.index declared as NumericDocValues Modifier and Type Field Description static NumericDocValuesNumericDocValues. EMPTYAn empty NumericDocValues which returns zero for every documentMethods in org.apache.lucene.index that return NumericDocValues Modifier and Type Method Description abstract NumericDocValuesAtomicReader. getNormValues(String field)ReturnsNumericDocValuesrepresenting norms for this field, or null if noNumericDocValueswere indexed.NumericDocValuesFilterAtomicReader. getNormValues(String field)static NumericDocValuesMultiDocValues. getNormValues(IndexReader r, String field)Returns a NumericDocValues for a reader's norms (potentially merging on-the-fly).NumericDocValuesParallelAtomicReader. getNormValues(String field)NumericDocValuesSegmentReader. getNormValues(String field)NumericDocValuesSlowCompositeReaderWrapper. getNormValues(String field)abstract NumericDocValuesAtomicReader. getNumericDocValues(String field)ReturnsNumericDocValuesfor this field, or null if noNumericDocValueswere indexed for this field.NumericDocValuesFilterAtomicReader. getNumericDocValues(String field)NumericDocValuesParallelAtomicReader. getNumericDocValues(String field)NumericDocValuesSegmentReader. getNumericDocValues(String field)NumericDocValuesSlowCompositeReaderWrapper. getNumericDocValues(String field)static NumericDocValuesMultiDocValues. getNumericValues(IndexReader r, String field)Returns a NumericDocValues for a reader's docvalues (potentially merging on-the-fly) -
Uses of NumericDocValues in org.apache.lucene.util
Subclasses of NumericDocValues in org.apache.lucene.util Modifier and Type Class Description classLongValuesAbstraction over an array of longs. -
Uses of NumericDocValues in org.apache.lucene.util.packed
Subclasses of NumericDocValues in org.apache.lucene.util.packed Modifier and Type Class Description classAppendingDeltaPackedLongBufferUtility class to buffer a list of signed longs in memory.classAppendingPackedLongBufferUtility class to buffer a list of signed longs in memory.classBlockPackedReaderProvides random access to a stream written withBlockPackedWriter.classGrowableWriterImplementsPackedInts.Mutable, but grows the bit count of the underlying packed ints on-demand.classMonotonicAppendingLongBufferUtility class to buffer signed longs in memory, which is optimized for the case where the sequence is monotonic, although it can encode any sequence of arbitrary longs.classMonotonicBlockPackedReaderProvides random access to a stream written withMonotonicBlockPackedWriter.static classPackedInts.MutableA packed integer array that can be modified.static classPackedInts.NullReaderAPackedInts.Readerwhich has all its values equal to 0 (bitsPerValue = 0).static classPackedInts.ReaderA read-only random access array of positive integers.classPagedGrowableWriterclassPagedMutableAPagedMutable.
-