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.index Code to maintain and access indices.org.apache.lucene.search Code to search indices. -
-
Uses of NumericDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return NumericDocValues Modifier and Type Method Description abstract NumericDocValuesNormsProducer. getNorms(FieldInfo field)ReturnsNumericDocValuesfor this field.abstract NumericDocValuesDocValuesProducer. getNumeric(FieldInfo field)ReturnsNumericDocValuesfor this field. -
Uses of NumericDocValues in org.apache.lucene.index
Subclasses of NumericDocValues in org.apache.lucene.index Modifier and Type Class Description classFilterNumericDocValuesDelegates all methods to a wrappedNumericDocValues.classLegacyNumericDocValuesWrapperDeprecated.ImplementNumericDocValuesdirectly.Fields in org.apache.lucene.index declared as NumericDocValues Modifier and Type Field Description protected NumericDocValuesFilterNumericDocValues. inWrapped valuesMethods in org.apache.lucene.index that return NumericDocValues Modifier and Type Method Description static NumericDocValuesDocValues. emptyNumeric()An empty NumericDocValues which returns no documentsNumericDocValuesCodecReader. getNormValues(String field)NumericDocValuesFilterLeafReader. getNormValues(String field)abstract NumericDocValuesLeafReader. getNormValues(String field)ReturnsNumericDocValuesrepresenting norms for this field, or null if noNumericDocValueswere indexed.static NumericDocValuesMultiDocValues. getNormValues(IndexReader r, String field)Returns a NumericDocValues for a reader's norms (potentially merging on-the-fly).NumericDocValuesParallelLeafReader. getNormValues(String field)static NumericDocValuesDocValues. getNumeric(LeafReader reader, String field)Returns NumericDocValues for the field, orDocValues.emptyNumeric()if it has none.NumericDocValuesEmptyDocValuesProducer. getNumeric(FieldInfo field)NumericDocValuesCodecReader. getNumericDocValues(String field)NumericDocValuesFilterLeafReader. getNumericDocValues(String field)abstract NumericDocValuesLeafReader. getNumericDocValues(String field)ReturnsNumericDocValuesfor this field, or null if no numeric doc values were indexed for this field.NumericDocValuesParallelLeafReader. getNumericDocValues(String field)static NumericDocValuesMultiDocValues. getNumericValues(IndexReader r, String field)Returns a NumericDocValues for a reader's docvalues (potentially merging on-the-fly)static NumericDocValuesDocValues. unwrapSingleton(SortedNumericDocValues dv)Returns a single-valued view of the SortedNumericDocValues, if it was previously wrapped withDocValues.singleton(NumericDocValues), or null.Methods in org.apache.lucene.index with parameters of type NumericDocValues Modifier and Type Method Description static SortedNumericDocValuesDocValues. singleton(NumericDocValues dv)Returns a multi-valued view over the provided NumericDocValuesConstructors in org.apache.lucene.index with parameters of type NumericDocValues Constructor Description FilterNumericDocValues(NumericDocValues in)Sole constructor -
Uses of NumericDocValues in org.apache.lucene.search
Fields in org.apache.lucene.search declared as NumericDocValues Modifier and Type Field Description protected NumericDocValuesFieldComparator.NumericComparator. currentReaderValuesMethods in org.apache.lucene.search that return NumericDocValues Modifier and Type Method Description protected NumericDocValuesFieldComparator.NumericComparator. getNumericDocValues(LeafReaderContext context, String field)Retrieves the NumericDocValues for the field in this segmentstatic NumericDocValuesSortedNumericSelector. wrap(SortedNumericDocValues sortedNumeric, SortedNumericSelector.Type selector, SortField.Type numericType)Wraps a multi-valued SortedNumericDocValues as a single-valued view, using the specified selector and numericType.
-