Uses of Class
org.apache.lucene.index.SortedNumericDocValues
-
Packages that use SortedNumericDocValues Package Description org.apache.lucene.backward_codecs.lucene70 Components from the Lucene 7.0 index format.org.apache.lucene.backward_codecs.lucene80 Components from the Lucene 8.0 index format.org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.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.misc.search Misc search implementations.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.org.apache.lucene.spatial3d Lucene field & query support for the spatial geometry implemented inorg.apache.lucene.spatial3d.geom
. -
-
Uses of SortedNumericDocValues in org.apache.lucene.backward_codecs.lucene70
Methods in org.apache.lucene.backward_codecs.lucene70 that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
Lucene70DocValuesProducer. getSortedNumeric(FieldInfo field)
Methods in org.apache.lucene.backward_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.backward_codecs.lucene80
Methods in org.apache.lucene.backward_codecs.lucene80 that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValues
Lucene80DocValuesProducer. getSortedNumeric(FieldInfo field)
Methods in org.apache.lucene.backward_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
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.lucene90
Methods in org.apache.lucene.codecs.lucene90 that return SortedNumericDocValues Modifier and Type Method Description private SortedNumericDocValues
Lucene90DocValuesProducer. getSortedNumeric(Lucene90DocValuesProducer.SortedNumericEntry entry)
SortedNumericDocValues
Lucene90DocValuesProducer. getSortedNumeric(FieldInfo field)
Methods in org.apache.lucene.codecs.lucene90 with parameters of type SortedNumericDocValues Modifier and Type Method Description private long
Lucene90DocValuesConsumer. writeValuesMultipleBlocks(SortedNumericDocValues values, long gcd)
private void
Lucene90DocValuesConsumer. 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.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 with parameters of type SortedNumericDocValues Modifier and Type Method Description private TwoPhaseIterator
LatLonDocValuesQuery. contains(SortedNumericDocValues values, LatLonGeometry[] geometries)
private TwoPhaseIterator
LatLonDocValuesQuery. disjoint(SortedNumericDocValues values, GeoEncodingUtils.Component2DPredicate component2DPredicate)
private TwoPhaseIterator
LatLonDocValuesQuery. intersects(SortedNumericDocValues values, GeoEncodingUtils.Component2DPredicate component2DPredicate)
private TwoPhaseIterator
LatLonDocValuesQuery. within(SortedNumericDocValues values, GeoEncodingUtils.Component2DPredicate component2DPredicate)
-
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
SortedNumericDocValuesWriter.SortingSortedNumericDocValues
Fields in org.apache.lucene.index declared as SortedNumericDocValues Modifier and Type Field Description protected SortedNumericDocValues
FilterSortedNumericDocValues. in
Wrapped valuesprivate SortedNumericDocValues
SortedNumericDocValuesWriter.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
SlowCompositeCodecReaderWrapper.SlowCompositeDocValuesProducerWrapper. 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
ParallelLeafReader. 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)private SortedNumericDocValues
SortedNumericDocValuesWriter. getValues(PackedLongValues values, PackedLongValues valueCounts, DocsWithFieldSet docsWithField)
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)
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 constructorLongValues(int maxDoc, Sorter.DocMap sortMap, SortedNumericDocValues oldValues, float acceptableOverheadRatio)
SortingSortedNumericDocValues(SortedNumericDocValues in, SortedNumericDocValuesWriter.LongValues 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.misc.search
Fields in org.apache.lucene.misc.search declared as SortedNumericDocValues Modifier and Type Field Description protected SortedNumericDocValues
DocValuesStats.SortedNumericDocValuesStats. sndv
-
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
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. -
Uses of SortedNumericDocValues in org.apache.lucene.spatial3d
Fields in org.apache.lucene.spatial3d declared as SortedNumericDocValues Modifier and Type Field Description (package private) SortedNumericDocValues
Geo3DPointDistanceComparator. currentDocs
(package private) SortedNumericDocValues
Geo3DPointOutsideDistanceComparator. currentDocs
-