Uses of Class
org.apache.lucene.index.SortedNumericDocValues
Packages that use SortedNumericDocValues
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
Code to maintain and access indices.
Code to search indices.
-
Uses of SortedNumericDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return SortedNumericDocValuesModifier and TypeMethodDescriptionabstract SortedNumericDocValues
DocValuesProducer.getSortedNumeric
(FieldInfo field) ReturnsSortedNumericDocValues
for this field. -
Uses of SortedNumericDocValues in org.apache.lucene.index
Subclasses of SortedNumericDocValues in org.apache.lucene.indexModifier and TypeClassDescriptionclass
Delegates all methods to a wrappedSortedNumericDocValues
.Fields in org.apache.lucene.index declared as SortedNumericDocValuesModifier and TypeFieldDescriptionprotected final SortedNumericDocValues
FilterSortedNumericDocValues.in
Wrapped valuesMethods in org.apache.lucene.index that return SortedNumericDocValuesModifier and TypeMethodDescriptionstatic final SortedNumericDocValues
DocValues.emptySortedNumeric()
An empty SortedNumericDocValues which returns zero values for every documentstatic SortedNumericDocValues
DocValues.getSortedNumeric
(LeafReader reader, String field) Returns SortedNumericDocValues for the field, orDocValues.emptySortedNumeric()
if it has none.EmptyDocValuesProducer.getSortedNumeric
(FieldInfo field) final SortedNumericDocValues
CodecReader.getSortedNumericDocValues
(String field) ExitableDirectoryReader.ExitableFilterAtomicReader.getSortedNumericDocValues
(String field) FilterLeafReader.getSortedNumericDocValues
(String field) abstract SortedNumericDocValues
LeafReader.getSortedNumericDocValues
(String field) ReturnsSortedNumericDocValues
for this field, or null if noSortedNumericDocValues
were indexed for this field.ParallelLeafReader.getSortedNumericDocValues
(String field) static SortedNumericDocValues
MultiDocValues.getSortedNumericValues
(IndexReader r, String field) Returns a SortedNumericDocValues for a reader's docvalues (potentially merging on-the-fly)static SortedNumericDocValues
DocValues.singleton
(NumericDocValues dv) Returns a multi-valued view over the provided NumericDocValuesMethods in org.apache.lucene.index with parameters of type SortedNumericDocValuesModifier and TypeMethodDescriptionstatic NumericDocValues
DocValues.unwrapSingleton
(SortedNumericDocValues dv) Returns a single-valued view of the SortedNumericDocValues, if it was previously wrapped withDocValues.singleton(NumericDocValues)
, or null.Constructors in org.apache.lucene.index with parameters of type SortedNumericDocValuesModifierConstructorDescriptionSole constructor -
Uses of SortedNumericDocValues in org.apache.lucene.search
Methods in org.apache.lucene.search with parameters of type SortedNumericDocValuesModifier and TypeMethodDescriptionstatic NumericDocValues
SortedNumericSelector.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.