Uses of Class
org.apache.lucene.index.SortedDocValues
Packages that use SortedDocValues
Package
Description
Components from the Lucene 7.0 index format.
Components from the Lucene 8.0 index format.
Codecs API: API for customization of the encoding and structure of the index.
Lucene 9.0 file format.
Postings format that can delegate to different formats per-field.
Simpletext Codec: writes human readable postings.
Code to maintain and access indices.
High-performance single-document main memory Apache Lucene fulltext search index.
Misc search implementations.
Monitoring framework
FunctionValues for different data types.
Code to search indices.
Grouping.
Highlighting search terms.
Support for index-time and query-time joins.
-
Uses of SortedDocValues in org.apache.lucene.backward_codecs.lucene70
Subclasses of SortedDocValues in org.apache.lucene.backward_codecs.lucene70Modifier and TypeClassDescriptionprivate static class
Methods in org.apache.lucene.backward_codecs.lucene70 that return SortedDocValuesModifier and TypeMethodDescriptionprivate SortedDocValues
Lucene70DocValuesProducer.getSorted
(Lucene70DocValuesProducer.SortedEntry entry) -
Uses of SortedDocValues in org.apache.lucene.backward_codecs.lucene80
Subclasses of SortedDocValues in org.apache.lucene.backward_codecs.lucene80Modifier and TypeClassDescriptionprivate static class
Methods in org.apache.lucene.backward_codecs.lucene80 that return SortedDocValuesModifier and TypeMethodDescriptionprivate SortedDocValues
Lucene80DocValuesProducer.getSorted
(Lucene80DocValuesProducer.SortedEntry entry) -
Uses of SortedDocValues in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as SortedDocValuesModifier and TypeFieldDescription(package private) final SortedDocValues
DocValuesConsumer.SortedDocValuesSub.values
Methods in org.apache.lucene.codecs that return SortedDocValuesModifier and TypeMethodDescriptionabstract SortedDocValues
ReturnsSortedDocValues
for this field.private static SortedDocValues
DocValuesConsumer.mergeSortedValues
(List<DocValuesConsumer.SortedDocValuesSub> subs, boolean indexIsSorted, OrdinalMap map) Constructors in org.apache.lucene.codecs with parameters of type SortedDocValuesModifierConstructorDescriptionSortedDocValuesSub
(MergeState.DocMap docMap, SortedDocValues values, LongValues map) -
Uses of SortedDocValues in org.apache.lucene.codecs.lucene90
Subclasses of SortedDocValues in org.apache.lucene.codecs.lucene90Methods in org.apache.lucene.codecs.lucene90 that return SortedDocValuesModifier and TypeMethodDescriptionprivate SortedDocValues
Lucene90DocValuesProducer.getSorted
(Lucene90DocValuesProducer.SortedEntry entry) -
Uses of SortedDocValues in org.apache.lucene.codecs.perfield
Methods in org.apache.lucene.codecs.perfield that return SortedDocValuesModifier and TypeMethodDescription -
Uses of SortedDocValues in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext that return SortedDocValuesModifier and TypeMethodDescription -
Uses of SortedDocValues in org.apache.lucene.index
Subclasses of SortedDocValues in org.apache.lucene.indexModifier and TypeClassDescriptionclass
Delegates all methods to a wrappedSortedDocValues
.static class
Implements SortedDocValues over n subs, using an OrdinalMap(package private) static class
(package private) static class
Fields in org.apache.lucene.index declared as SortedDocValuesModifier and TypeFieldDescriptionprivate SortedDocValues
MultiDocValues.MultiSortedDocValues.currentValues
protected final SortedDocValues
FilterSortedDocValues.in
Wrapped valuesprivate final SortedDocValues
SingletonSortedSetDocValues.in
private final SortedDocValues
SortedDocValuesWriter.SortingSortedDocValues.in
final SortedDocValues[]
MultiDocValues.MultiSortedDocValues.values
leaf valuesprivate final SortedDocValues
SortedDocValuesTermsEnum.values
Methods in org.apache.lucene.index that return SortedDocValuesModifier and TypeMethodDescriptionstatic final SortedDocValues
DocValues.emptySorted()
An empty SortedDocValues which returnsBytesRef.EMPTY_BYTES
for every documentIndexSorter.SortedDocValuesProvider.get
(LeafReader reader) Returns the SortedDocValues instance for this LeafReader(package private) SortedDocValues
SortedDocValuesWriter.getDocValues()
static SortedDocValues
DocValues.getSorted
(LeafReader reader, String field) Returns SortedDocValues for the field, orDocValues.emptySorted()
if it has none.final SortedDocValues
CodecReader.getSortedDocValues
(String field) ExitableDirectoryReader.ExitableFilterAtomicReader.getSortedDocValues
(String field) FilterLeafReader.getSortedDocValues
(String field) abstract SortedDocValues
LeafReader.getSortedDocValues
(String field) ReturnsSortedDocValues
for this field, or null if noSortedDocValues
were indexed for this field.ParallelLeafReader.getSortedDocValues
(String field) SingletonSortedSetDocValues.getSortedDocValues()
Return the wrappedSortedDocValues
static SortedDocValues
MultiDocValues.getSortedValues
(IndexReader r, String field) Returns a SortedDocValues for a reader's docvalues (potentially doing extremely slow things).static SortedDocValues
DocValues.unwrapSingleton
(SortedSetDocValues dv) Returns a single-valued view of the SortedSetDocValues, if it was previously wrapped withDocValues.singleton(SortedDocValues)
, or null.Methods in org.apache.lucene.index with parameters of type SortedDocValuesModifier and TypeMethodDescriptionstatic OrdinalMap
OrdinalMap.build
(IndexReader.CacheKey owner, SortedDocValues[] values, float acceptableOverheadRatio) Create an ordinal map that uses the number of unique values of eachSortedDocValues
instance as a weight.private static void
CheckIndex.checkSortedDocValues
(String fieldName, int maxDoc, SortedDocValues dv, SortedDocValues dv2) static SortedSetDocValues
DocValues.singleton
(SortedDocValues dv) Returns a multi-valued view over the provided SortedDocValuesprivate int[]
SortedDocValuesWriter.sortDocValues
(int maxDoc, Sorter.DocMap sortMap, SortedDocValues oldValues) Constructors in org.apache.lucene.index with parameters of type SortedDocValuesModifierConstructorDescriptionSole constructorMultiSortedDocValues
(SortedDocValues[] values, int[] docStarts, OrdinalMap mapping, long totalCost) Creates a new MultiSortedDocValues overvalues
Creates a multi-valued view over the provided SortedDocValuesCreates a new TermsEnum over the provided values(package private)
SortingSortedDocValues
(SortedDocValues in, int[] ords) -
Uses of SortedDocValues in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory that return SortedDocValuesModifier and TypeMethodDescriptionMemoryIndex.MemoryIndexReader.getSortedDocValues
(String field) private SortedDocValues
MemoryIndex.MemoryIndexReader.getSortedDocValues
(String field, DocValuesType docValuesType) private static SortedDocValues
MemoryIndex.sortedDocValues
(BytesRef value) -
Uses of SortedDocValues in org.apache.lucene.misc.search
Fields in org.apache.lucene.misc.search declared as SortedDocValuesModifier and TypeFieldDescriptionprotected SortedDocValues
DocValuesStats.SortedDocValuesStats.sdv
-
Uses of SortedDocValues in org.apache.lucene.monitor
Fields in org.apache.lucene.monitor declared as SortedDocValuesModifier and TypeFieldDescription(package private) SortedDocValues
QueryIndex.DataValues.cacheId
(package private) SortedDocValues
QueryIndex.DataValues.queryId
-
Uses of SortedDocValues in org.apache.lucene.queries.function.docvalues
Fields in org.apache.lucene.queries.function.docvalues declared as SortedDocValuesModifier and TypeFieldDescriptionprotected final SortedDocValues
DocTermsIndexDocValues.termsIndex
Methods in org.apache.lucene.queries.function.docvalues that return SortedDocValuesModifier and TypeMethodDescription(package private) static SortedDocValues
DocTermsIndexDocValues.open
(LeafReaderContext context, String field) Constructors in org.apache.lucene.queries.function.docvalues with parameters of type SortedDocValuesModifierConstructorDescriptionprotected
DocTermsIndexDocValues
(ValueSource vs, SortedDocValues termsIndex) -
Uses of SortedDocValues in org.apache.lucene.search
Subclasses of SortedDocValues in org.apache.lucene.searchModifier and TypeClassDescription(package private) static class
Wraps a SortedSetDocValues and returns the last ordinal (max)(package private) static class
Wraps a SortedSetDocValues and returns the middle ordinal (or max of the two)(package private) static class
Wraps a SortedSetDocValues and returns the middle ordinal (or min of the two)(package private) static class
Wraps a SortedSetDocValues and returns the first ordinal (min)Fields in org.apache.lucene.search declared as SortedDocValuesModifier and TypeFieldDescription(package private) SortedDocValues
FieldComparator.TermOrdValComparator.termsIndex
Methods in org.apache.lucene.search that return SortedDocValuesModifier and TypeMethodDescriptionprotected SortedDocValues
FieldComparator.TermOrdValComparator.getSortedDocValues
(LeafReaderContext context, String field) Retrieves the SortedDocValues for the field in this segmentprivate SortedDocValues
SortedSetSortField.getValues
(LeafReader reader) static SortedDocValues
SortedSetSelector.wrap
(SortedSetDocValues sortedSet, SortedSetSelector.Type selector) Wraps a multi-valued SortedSetDocValues as a single-valued view, using the specified selector -
Uses of SortedDocValues in org.apache.lucene.search.grouping
Fields in org.apache.lucene.search.grouping declared as SortedDocValuesModifier and TypeFieldDescriptionprivate SortedDocValues
TermGroupSelector.docValues
private SortedDocValues
TermGroupFacetCollector.SV.facetFieldTermsIndex
(package private) SortedDocValues
TermGroupFacetCollector.groupFieldTermsIndex
-
Uses of SortedDocValues in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight that return SortedDocValuesModifier and TypeMethodDescriptionTermVectorLeafReader.getSortedDocValues
(String field) WeightedSpanTermExtractor.DelegatingLeafReader.getSortedDocValues
(String field) -
Uses of SortedDocValues in org.apache.lucene.search.join
Subclasses of SortedDocValues in org.apache.lucene.search.joinFields in org.apache.lucene.search.join declared as SortedDocValuesModifier and TypeFieldDescriptionprivate final SortedDocValues
GlobalOrdinalsCollector.OrdinalMapCollector.docTermOrds
private final SortedDocValues
GlobalOrdinalsCollector.SegmentOrdinalCollector.docTermOrds
private final SortedDocValues
GlobalOrdinalsWithScoreCollector.OrdinalMapCollector.docTermOrds
private final SortedDocValues
GlobalOrdinalsWithScoreCollector.SegmentOrdinalCollector.docTermOrds
(package private) final SortedDocValues
BaseGlobalOrdinalScorer.values
private final SortedDocValues
ToParentDocValues.SortedDVs.values
Methods in org.apache.lucene.search.join that return SortedDocValuesModifier and TypeMethodDescriptionstatic SortedDocValues
BlockJoinSelector.wrap
(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children) Wraps the providedSortedDocValues
in order to only select one value per parent among itschildren
using the configuredselection
type.static SortedDocValues
BlockJoinSelector.wrap
(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents, BitSet children) Deprecated.static SortedDocValues
BlockJoinSelector.wrap
(SortedSetDocValues sortedSet, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children) Wraps the providedSortedSetDocValues
in order to only select one value per parent among itschildren
using the configuredselection
type.(package private) static SortedDocValues
ToParentDocValues.wrap
(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents2, DocIdSetIterator children) Methods in org.apache.lucene.search.join that return types with arguments of type SortedDocValuesModifier and TypeMethodDescription(package private) static DocValuesTermsCollector.Function<SortedDocValues>
DocValuesTermsCollector.sortedDocValues
(String field) Methods in org.apache.lucene.search.join with parameters of type SortedDocValuesModifier and TypeMethodDescriptionstatic SortedDocValues
BlockJoinSelector.wrap
(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children) Wraps the providedSortedDocValues
in order to only select one value per parent among itschildren
using the configuredselection
type.static SortedDocValues
BlockJoinSelector.wrap
(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents, BitSet children) Deprecated.(package private) static SortedDocValues
ToParentDocValues.wrap
(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents2, DocIdSetIterator children) Method parameters in org.apache.lucene.search.join with type arguments of type SortedDocValuesModifier and TypeMethodDescriptionstatic GenericTermsCollector
GenericTermsCollector.createCollectorSV
(DocValuesTermsCollector.Function<SortedDocValues> svFunction, ScoreMode mode) Constructors in org.apache.lucene.search.join with parameters of type SortedDocValuesModifierConstructorDescriptionBaseGlobalOrdinalScorer
(Weight weight, SortedDocValues values, DocIdSetIterator approximationScorer) (package private)
OrdinalMapCollector
(SortedDocValues docTermOrds, LongValues segmentOrdToGlobalOrdLookup) (package private)
OrdinalMapCollector
(SortedDocValues docTermOrds, LongValues segmentOrdToGlobalOrdLookup) OrdinalMapScorer
(Weight weight, float score, LongBitSet foundOrds, SortedDocValues values, DocIdSetIterator approximationScorer, LongValues segmentOrdToGlobalOrdLookup) OrdinalMapScorer
(Weight weight, GlobalOrdinalsWithScoreCollector collector, SortedDocValues values, DocIdSetIterator approximation, LongValues segmentOrdToGlobalOrdLookup) (package private)
SegmentOrdinalCollector
(SortedDocValues docTermOrds) (package private)
SegmentOrdinalCollector
(SortedDocValues docTermOrds) SegmentOrdinalScorer
(Weight weight, float score, LongBitSet foundOrds, SortedDocValues values, DocIdSetIterator approximationScorer) SegmentOrdinalScorer
(Weight weight, GlobalOrdinalsWithScoreCollector collector, SortedDocValues values, DocIdSetIterator approximation) private
SortedDVs
(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children) Constructor parameters in org.apache.lucene.search.join with type arguments of type SortedDocValuesModifierConstructorDescription(package private)
Avg
(DocValuesTermsCollector.Function<SortedDocValues> docValuesCall) (package private)
SV
(DocValuesTermsCollector.Function<SortedDocValues> docValuesCall) (package private)
SV
(DocValuesTermsCollector.Function<SortedDocValues> docValuesCall, ScoreMode scoreMode)