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.lucene84for 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 aDocumentfor 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) SortedNumericDocValuesDocValuesConsumer.SortedNumericDocValuesSub. valuesMethods in org.apache.lucene.codecs that return SortedNumericDocValues Modifier and Type Method Description abstract SortedNumericDocValuesDocValuesProducer. getSortedNumeric(FieldInfo field)ReturnsSortedNumericDocValuesfor 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 SortedNumericDocValuesLucene70DocValuesProducer. getSortedNumeric(FieldInfo field)Methods in org.apache.lucene.codecs.lucene70 with parameters of type SortedNumericDocValues Modifier and Type Method Description private voidLucene70DocValuesConsumer. writeValuesMultipleBlocks(SortedNumericDocValues values, long gcd)private voidLucene70DocValuesConsumer. 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 SortedNumericDocValuesLucene80DocValuesProducer. getSortedNumeric(FieldInfo field)Methods in org.apache.lucene.codecs.lucene80 with parameters of type SortedNumericDocValues Modifier and Type Method Description private longLucene80DocValuesConsumer. writeValuesMultipleBlocks(SortedNumericDocValues values, long gcd)private voidLucene80DocValuesConsumer. 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) classLegacySortedNumericDocValuesWrapperDeprecated.ImplementSortedNumericDocValuesdirectly.Methods in org.apache.lucene.codecs.memory that return SortedNumericDocValues Modifier and Type Method Description SortedNumericDocValuesDirectDocValuesProducer. 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 SortedNumericDocValuesPerFieldDocValuesFormat.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 SortedNumericDocValuesSimpleTextDocValuesReader. 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) SortedNumericDocValuesLatLonPointDistanceComparator. currentDocs(package private) SortedNumericDocValuesXYPointDistanceComparator. currentDocsMethods in org.apache.lucene.document that return SortedNumericDocValues Modifier and Type Method Description (package private) abstract SortedNumericDocValuesSortedNumericDocValuesRangeQuery. getValues(LeafReader reader, java.lang.String field)Methods in org.apache.lucene.document with parameters of type SortedNumericDocValues Modifier and Type Method Description private TwoPhaseIteratorLatLonDocValuesQuery. contains(SortedNumericDocValues values, LatLonGeometry[] geometries)private TwoPhaseIteratorLatLonDocValuesQuery. disjoint(SortedNumericDocValues values, GeoEncodingUtils.Component2DPredicate component2DPredicate)private TwoPhaseIteratorLatLonDocValuesQuery. intersects(SortedNumericDocValues values, GeoEncodingUtils.Component2DPredicate component2DPredicate)private TwoPhaseIteratorLatLonDocValuesQuery. 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 classFilterSortedNumericDocValuesDelegates all methods to a wrappedSortedNumericDocValues.(package private) classSingletonSortedNumericDocValuesExposes multi-valued view over a single-valued instance.private static classSortedNumericDocValuesWriter.BufferedSortedNumericDocValues(package private) static classSortedNumericDocValuesWriter.SortingSortedNumericDocValuesFields in org.apache.lucene.index declared as SortedNumericDocValues Modifier and Type Field Description protected SortedNumericDocValuesFilterSortedNumericDocValues. inWrapped valuesprivate SortedNumericDocValuesSortedNumericDocValuesWriter.SortingSortedNumericDocValues. inMethods in org.apache.lucene.index that return SortedNumericDocValues Modifier and Type Method Description static SortedNumericDocValuesDocValues. emptySortedNumeric()An empty SortedNumericDocValues which returns zero values for every document(package private) SortedNumericDocValuesSortedNumericDocValuesWriter. getDocValues()static SortedNumericDocValuesDocValues. getSortedNumeric(LeafReader reader, java.lang.String field)Returns SortedNumericDocValues for the field, orDocValues.emptySortedNumeric()if it has none.SortedNumericDocValuesEmptyDocValuesProducer. getSortedNumeric(FieldInfo field)SortedNumericDocValuesSegmentDocValuesProducer. getSortedNumeric(FieldInfo field)SortedNumericDocValuesCodecReader. getSortedNumericDocValues(java.lang.String field)SortedNumericDocValuesExitableDirectoryReader.ExitableFilterAtomicReader. getSortedNumericDocValues(java.lang.String field)SortedNumericDocValuesFilterLeafReader. getSortedNumericDocValues(java.lang.String field)abstract SortedNumericDocValuesLeafReader. getSortedNumericDocValues(java.lang.String field)ReturnsSortedNumericDocValuesfor this field, or null if noSortedNumericDocValueswere indexed for this field.SortedNumericDocValuesMergeReaderWrapper. getSortedNumericDocValues(java.lang.String field)SortedNumericDocValuesParallelLeafReader. getSortedNumericDocValues(java.lang.String field)static SortedNumericDocValuesMultiDocValues. getSortedNumericValues(IndexReader r, java.lang.String field)Returns a SortedNumericDocValues for a reader's docvalues (potentially merging on-the-fly)static SortedNumericDocValuesDocValues. 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 voidCheckIndex. checkSortedNumericDocValues(java.lang.String fieldName, int maxDoc, SortedNumericDocValues ndv, SortedNumericDocValues ndv2)static NumericDocValuesDocValues. 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 SortedNumericDocValuesMemoryIndex.MemoryIndexReader. getSortedNumericDocValues(java.lang.String field)private static SortedNumericDocValuesMemoryIndex. 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) SortedNumericDocValuesSortedNumericSelector.MaxValue. in(package private) SortedNumericDocValuesSortedNumericSelector.MinValue. inprotected SortedNumericDocValuesDocValuesStats.SortedNumericDocValuesStats. sndvMethods in org.apache.lucene.search with parameters of type SortedNumericDocValues Modifier and Type Method Description static 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.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 SortedNumericDocValuesTermVectorLeafReader. 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 NumericDocValuesBlockJoinSelector. wrap(SortedNumericDocValues sortedNumerics, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children)Wraps the providedSortedNumericDocValuesin order to only select one value per parent among itschildrenusing the configuredselectiontype.static NumericDocValuesBlockJoinSelector. wrap(SortedNumericDocValues sortedNumerics, BlockJoinSelector.Type selection, BitSet parents, BitSet children)Deprecated.
-