Uses of Class
org.apache.lucene.index.SortedNumericDocValues
-
Packages that use SortedNumericDocValues Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene70 Components from the Lucene 7.0 index format.org.apache.lucene.codecs.lucene80 Components from the Lucene 8.0 index format Seeorg.apache.lucene.codecs.lucene84
for an overview of the index format.org.apache.lucene.codecs.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.index.memory High-performance single-document main memory Apache Lucene fulltext search index.org.apache.lucene.search Code to search indices.org.apache.lucene.search.highlight Highlighting search terms.org.apache.lucene.search.join Support for index-time and query-time joins. -
-
Uses of SortedNumericDocValues in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as SortedNumericDocValues Modifier and Type Field Description (package private) SortedNumericDocValues
DocValuesConsumer.SortedNumericDocValuesSub. values
Methods in org.apache.lucene.codecs that return SortedNumericDocValues Modifier and Type Method Description abstract SortedNumericDocValues
DocValuesProducer. getSortedNumeric(FieldInfo field)
ReturnsSortedNumericDocValues
for this field.Constructors in org.apache.lucene.codecs with parameters of type SortedNumericDocValues Constructor Description SortedNumericDocValuesSub(MergeState.DocMap docMap, SortedNumericDocValues values)
-
Uses of SortedNumericDocValues in org.apache.lucene.codecs.lucene70
Methods in org.apache.lucene.codecs.lucene70 that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
Lucene70DocValuesProducer. getSortedNumeric(FieldInfo field)
Methods in org.apache.lucene.codecs.lucene70 with parameters of type SortedNumericDocValues Modifier and Type Method Description private void
Lucene70DocValuesConsumer. writeValuesMultipleBlocks(SortedNumericDocValues values, long gcd)
private void
Lucene70DocValuesConsumer. writeValuesSingleBlock(SortedNumericDocValues values, long numValues, int numBitsPerValue, long min, long gcd, java.util.Map<java.lang.Long,java.lang.Integer> encode)
-
Uses of SortedNumericDocValues in org.apache.lucene.codecs.lucene80
Methods in org.apache.lucene.codecs.lucene80 that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
Lucene80DocValuesProducer. getSortedNumeric(FieldInfo field)
Methods in org.apache.lucene.codecs.lucene80 with parameters of type SortedNumericDocValues Modifier and Type Method Description private long
Lucene80DocValuesConsumer. writeValuesMultipleBlocks(SortedNumericDocValues values, long gcd)
private void
Lucene80DocValuesConsumer. writeValuesSingleBlock(SortedNumericDocValues values, long numValues, int numBitsPerValue, long min, long gcd, java.util.Map<java.lang.Long,java.lang.Integer> encode)
-
Uses of SortedNumericDocValues in org.apache.lucene.codecs.memory
Subclasses of SortedNumericDocValues in org.apache.lucene.codecs.memory Modifier and Type Class Description (package private) class
LegacySortedNumericDocValuesWrapper
Deprecated.ImplementSortedNumericDocValues
directly.Methods in org.apache.lucene.codecs.memory that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
DirectDocValuesProducer. getSortedNumeric(FieldInfo field)
-
Uses of SortedNumericDocValues in org.apache.lucene.codecs.perfield
Methods in org.apache.lucene.codecs.perfield that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
PerFieldDocValuesFormat.FieldsReader. getSortedNumeric(FieldInfo field)
-
Uses of SortedNumericDocValues in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
SimpleTextDocValuesReader. getSortedNumeric(FieldInfo field)
-
Uses of SortedNumericDocValues in org.apache.lucene.document
Fields in org.apache.lucene.document declared as SortedNumericDocValues Modifier and Type Field Description (package private) SortedNumericDocValues
LatLonPointDistanceComparator. currentDocs
(package private) SortedNumericDocValues
XYPointDistanceComparator. currentDocs
Methods in org.apache.lucene.document that return SortedNumericDocValues Modifier and Type Method Description (package private) abstract SortedNumericDocValues
SortedNumericDocValuesRangeQuery. getValues(LeafReader reader, java.lang.String field)
-
Uses of SortedNumericDocValues in org.apache.lucene.index
Subclasses of SortedNumericDocValues in org.apache.lucene.index Modifier and Type Class Description class
FilterSortedNumericDocValues
Delegates all methods to a wrappedSortedNumericDocValues
.(package private) class
SingletonSortedNumericDocValues
Exposes multi-valued view over a single-valued instance.private static class
SortedNumericDocValuesWriter.BufferedSortedNumericDocValues
(package private) static class
SortingLeafReader.SortingSortedNumericDocValues
Fields in org.apache.lucene.index declared as SortedNumericDocValues Modifier and Type Field Description protected SortedNumericDocValues
FilterSortedNumericDocValues. in
Wrapped valuesprivate SortedNumericDocValues
SortingLeafReader.SortingSortedNumericDocValues. in
Methods in org.apache.lucene.index that return SortedNumericDocValues Modifier and Type Method Description static SortedNumericDocValues
DocValues. emptySortedNumeric()
An empty SortedNumericDocValues which returns zero values for every document(package private) SortedNumericDocValues
SortedNumericDocValuesWriter. getDocValues()
static SortedNumericDocValues
DocValues. getSortedNumeric(LeafReader reader, java.lang.String field)
Returns SortedNumericDocValues for the field, orDocValues.emptySortedNumeric()
if it has none.SortedNumericDocValues
EmptyDocValuesProducer. getSortedNumeric(FieldInfo field)
SortedNumericDocValues
SegmentDocValuesProducer. getSortedNumeric(FieldInfo field)
SortedNumericDocValues
CodecReader. getSortedNumericDocValues(java.lang.String field)
SortedNumericDocValues
ExitableDirectoryReader.ExitableFilterAtomicReader. getSortedNumericDocValues(java.lang.String field)
SortedNumericDocValues
FilterLeafReader. getSortedNumericDocValues(java.lang.String field)
abstract SortedNumericDocValues
LeafReader. getSortedNumericDocValues(java.lang.String field)
ReturnsSortedNumericDocValues
for this field, or null if noSortedNumericDocValues
were indexed for this field.SortedNumericDocValues
MergeReaderWrapper. getSortedNumericDocValues(java.lang.String field)
SortedNumericDocValues
ParallelLeafReader. getSortedNumericDocValues(java.lang.String field)
SortedNumericDocValues
SortingLeafReader. getSortedNumericDocValues(java.lang.String field)
static SortedNumericDocValues
MultiDocValues. getSortedNumericValues(IndexReader r, java.lang.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 SortedNumericDocValues Modifier and Type Method Description private static void
CheckIndex. checkSortedNumericDocValues(java.lang.String fieldName, int maxDoc, SortedNumericDocValues ndv, SortedNumericDocValues ndv2)
private long[][]
SortedNumericDocValuesWriter. sortDocValues(int maxDoc, Sorter.DocMap sortMap, SortedNumericDocValues oldValues)
static 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 SortedNumericDocValues Constructor Description FilterSortedNumericDocValues(SortedNumericDocValues in)
Sole constructorSortingSortedNumericDocValues(SortedNumericDocValues in, long[][] values)
-
Uses of SortedNumericDocValues in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
MemoryIndex.MemoryIndexReader. getSortedNumericDocValues(java.lang.String field)
private static SortedNumericDocValues
MemoryIndex. numericDocValues(long[] values, int count)
-
Uses of SortedNumericDocValues in org.apache.lucene.search
Fields in org.apache.lucene.search declared as SortedNumericDocValues Modifier and Type Field Description (package private) SortedNumericDocValues
SortedNumericSelector.MaxValue. in
(package private) SortedNumericDocValues
SortedNumericSelector.MinValue. in
protected SortedNumericDocValues
DocValuesStats.SortedNumericDocValuesStats. sndv
Methods in org.apache.lucene.search with parameters of type SortedNumericDocValues Modifier and Type Method Description static 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.Constructors in org.apache.lucene.search with parameters of type SortedNumericDocValues Constructor Description MaxValue(SortedNumericDocValues in)
MinValue(SortedNumericDocValues in)
-
Uses of SortedNumericDocValues in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
TermVectorLeafReader. getSortedNumericDocValues(java.lang.String field)
-
Uses of SortedNumericDocValues in org.apache.lucene.search.join
Methods in org.apache.lucene.search.join with parameters of type SortedNumericDocValues Modifier and Type Method Description static NumericDocValues
BlockJoinSelector. wrap(SortedNumericDocValues sortedNumerics, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children)
Wraps the providedSortedNumericDocValues
in order to only select one value per parent among itschildren
using the configuredselection
type.static NumericDocValues
BlockJoinSelector. wrap(SortedNumericDocValues sortedNumerics, BlockJoinSelector.Type selection, BitSet parents, BitSet children)
Deprecated.
-