Uses of Class
org.apache.lucene.index.SortedSetDocValues
Packages that use SortedSetDocValues
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.
Code to search indices.
Grouping.
Highlighting search terms.
Support for index-time and query-time joins.
-
Uses of SortedSetDocValues in org.apache.lucene.backward_codecs.lucene70
Subclasses of SortedSetDocValues in org.apache.lucene.backward_codecs.lucene70Modifier and TypeClassDescriptionprivate static class
Methods in org.apache.lucene.backward_codecs.lucene70 that return SortedSetDocValuesMethods in org.apache.lucene.backward_codecs.lucene70 with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionprivate void
Lucene70DocValuesConsumer.addTermsDict
(SortedSetDocValues values) private void
Lucene70DocValuesConsumer.writeTermsIndex
(SortedSetDocValues values) -
Uses of SortedSetDocValues in org.apache.lucene.backward_codecs.lucene80
Subclasses of SortedSetDocValues in org.apache.lucene.backward_codecs.lucene80Modifier and TypeClassDescriptionprivate static class
Methods in org.apache.lucene.backward_codecs.lucene80 that return SortedSetDocValuesMethods in org.apache.lucene.backward_codecs.lucene80 with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionprivate void
Lucene80DocValuesConsumer.addTermsDict
(SortedSetDocValues values) private void
Lucene80DocValuesConsumer.writeTermsIndex
(SortedSetDocValues values) -
Uses of SortedSetDocValues in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as SortedSetDocValuesModifier and TypeFieldDescription(package private) final SortedSetDocValues
DocValuesConsumer.SortedSetDocValuesSub.values
Methods in org.apache.lucene.codecs that return SortedSetDocValuesModifier and TypeMethodDescriptionabstract SortedSetDocValues
DocValuesProducer.getSortedSet
(FieldInfo field) ReturnsSortedSetDocValues
for this field.Constructors in org.apache.lucene.codecs with parameters of type SortedSetDocValuesModifierConstructorDescriptionSortedSetDocValuesSub
(MergeState.DocMap docMap, SortedSetDocValues values, LongValues map) -
Uses of SortedSetDocValues in org.apache.lucene.codecs.lucene90
Subclasses of SortedSetDocValues in org.apache.lucene.codecs.lucene90Methods in org.apache.lucene.codecs.lucene90 that return SortedSetDocValuesMethods in org.apache.lucene.codecs.lucene90 with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionprivate void
Lucene90DocValuesConsumer.addTermsDict
(SortedSetDocValues values) private static boolean
Lucene90DocValuesConsumer.isSingleValued
(SortedSetDocValues values) private void
Lucene90DocValuesConsumer.writeTermsIndex
(SortedSetDocValues values) -
Uses of SortedSetDocValues in org.apache.lucene.codecs.perfield
Methods in org.apache.lucene.codecs.perfield that return SortedSetDocValuesModifier and TypeMethodDescriptionPerFieldDocValuesFormat.FieldsReader.getSortedSet
(FieldInfo field) -
Uses of SortedSetDocValues in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext that return SortedSetDocValues -
Uses of SortedSetDocValues in org.apache.lucene.index
Subclasses of SortedSetDocValues in org.apache.lucene.indexModifier and TypeClassDescriptionclass
Delegates all methods to a wrappedSortedSetDocValues
.static class
Implements MultiSortedSetDocValues over n subs, using an OrdinalMap(package private) final class
Exposes multi-valued iterator view over a single-valued iterator.private static class
(package private) static class
Fields in org.apache.lucene.index declared as SortedSetDocValuesModifier and TypeFieldDescriptionprivate SortedSetDocValues
MultiDocValues.MultiSortedSetDocValues.currentValues
protected final SortedSetDocValues
FilterSortedSetDocValues.in
Wrapped valuesprivate final SortedSetDocValues
SortedSetDocValuesWriter.SortingSortedSetDocValues.in
final SortedSetDocValues[]
MultiDocValues.MultiSortedSetDocValues.values
leaf valuesprivate final SortedSetDocValues
SortedSetDocValuesTermsEnum.values
Methods in org.apache.lucene.index that return SortedSetDocValuesModifier and TypeMethodDescriptionstatic final SortedSetDocValues
DocValues.emptySortedSet()
An empty SortedDocValues which returnsBytesRef.EMPTY_BYTES
for every document(package private) SortedSetDocValues
SortedSetDocValuesWriter.getDocValues()
static SortedSetDocValues
DocValues.getSortedSet
(LeafReader reader, String field) Returns SortedSetDocValues for the field, orDocValues.emptySortedSet()
if it has none.EmptyDocValuesProducer.getSortedSet
(FieldInfo field) SegmentDocValuesProducer.getSortedSet
(FieldInfo field) SlowCompositeCodecReaderWrapper.SlowCompositeDocValuesProducerWrapper.getSortedSet
(FieldInfo field) final SortedSetDocValues
CodecReader.getSortedSetDocValues
(String field) ExitableDirectoryReader.ExitableFilterAtomicReader.getSortedSetDocValues
(String field) FilterLeafReader.getSortedSetDocValues
(String field) abstract SortedSetDocValues
LeafReader.getSortedSetDocValues
(String field) ReturnsSortedSetDocValues
for this field, or null if noSortedSetDocValues
were indexed for this field.ParallelLeafReader.getSortedSetDocValues
(String field) static SortedSetDocValues
MultiDocValues.getSortedSetValues
(IndexReader r, String field) Returns a SortedSetDocValues for a reader's docvalues (potentially doing extremely slow things).private SortedSetDocValues
SortedSetDocValuesWriter.getValues
(int[] sortedValues, int[] ordMap, BytesRefHash hash, PackedLongValues ords, PackedLongValues ordCounts, int maxCount, DocsWithFieldSet docsWithField) static SortedSetDocValues
DocValues.singleton
(SortedDocValues dv) Returns a multi-valued view over the provided SortedDocValuesMethods in org.apache.lucene.index with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionstatic OrdinalMap
OrdinalMap.build
(IndexReader.CacheKey owner, SortedSetDocValues[] values, float acceptableOverheadRatio) Create an ordinal map that uses the number of unique values of eachSortedSetDocValues
instance as a weight.private static void
CheckIndex.checkSortedSetDocValues
(String fieldName, int maxDoc, SortedSetDocValues dv, SortedSetDocValues dv2) static SortedDocValues
DocValues.unwrapSingleton
(SortedSetDocValues dv) Returns a single-valued view of the SortedSetDocValues, if it was previously wrapped withDocValues.singleton(SortedDocValues)
, or null.Constructors in org.apache.lucene.index with parameters of type SortedSetDocValuesModifierConstructorDescription(package private)
DocOrds
(int maxDoc, Sorter.DocMap sortMap, SortedSetDocValues oldValues, float acceptableOverheadRatio, int bitsPerValue) Initializes delegateMultiSortedSetDocValues
(SortedSetDocValues[] values, int[] docStarts, OrdinalMap mapping, long totalCost) Creates a new MultiSortedSetDocValues overvalues
Creates a new TermsEnum over the provided values(package private)
-
Uses of SortedSetDocValues in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory that return SortedSetDocValuesModifier and TypeMethodDescriptionMemoryIndex.MemoryIndexReader.getSortedSetDocValues
(String field) private static SortedSetDocValues
MemoryIndex.sortedSetDocValues
(BytesRefHash values, int[] bytesIds) -
Uses of SortedSetDocValues in org.apache.lucene.misc.search
Fields in org.apache.lucene.misc.search declared as SortedSetDocValuesModifier and TypeFieldDescriptionprotected SortedSetDocValues
DocValuesStats.SortedSetDocValuesStats.ssdv
-
Uses of SortedSetDocValues in org.apache.lucene.search
Fields in org.apache.lucene.search declared as SortedSetDocValuesModifier and TypeFieldDescription(package private) final SortedSetDocValues
SortedSetSelector.MaxValue.in
(package private) final SortedSetDocValues
SortedSetSelector.MiddleMaxValue.in
(package private) final SortedSetDocValues
SortedSetSelector.MiddleMinValue.in
(package private) final SortedSetDocValues
SortedSetSelector.MinValue.in
Methods in org.apache.lucene.search with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionstatic SortedDocValues
SortedSetSelector.wrap
(SortedSetDocValues sortedSet, SortedSetSelector.Type selector) Wraps a multi-valued SortedSetDocValues as a single-valued view, using the specified selectorConstructors in org.apache.lucene.search with parameters of type SortedSetDocValuesModifierConstructorDescription(package private)
(package private)
(package private)
(package private)
-
Uses of SortedSetDocValues in org.apache.lucene.search.grouping
Fields in org.apache.lucene.search.grouping declared as SortedSetDocValuesModifier and TypeFieldDescriptionprivate SortedSetDocValues
TermGroupFacetCollector.MV.facetFieldDocTermOrds
-
Uses of SortedSetDocValues in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight that return SortedSetDocValues -
Uses of SortedSetDocValues in org.apache.lucene.search.join
Methods in org.apache.lucene.search.join that return types with arguments of type SortedSetDocValuesModifier and TypeMethodDescription(package private) static DocValuesTermsCollector.Function<SortedSetDocValues>
DocValuesTermsCollector.sortedSetDocValues
(String field) GenericTermsCollector.verbose
(PrintStream out, DocValuesTermsCollector.Function<SortedSetDocValues> mvFunction) Methods in org.apache.lucene.search.join with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionstatic 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.Method parameters in org.apache.lucene.search.join with type arguments of type SortedSetDocValuesModifier and TypeMethodDescriptionstatic GenericTermsCollector
GenericTermsCollector.createCollectorMV
(DocValuesTermsCollector.Function<SortedSetDocValues> mvFunction, ScoreMode mode) GenericTermsCollector.verbose
(PrintStream out, DocValuesTermsCollector.Function<SortedSetDocValues> mvFunction) Constructor parameters in org.apache.lucene.search.join with type arguments of type SortedSetDocValuesModifierConstructorDescription(package private)
Avg
(DocValuesTermsCollector.Function<SortedSetDocValues> docValuesCall) (package private)
MV
(DocValuesTermsCollector.Function<SortedSetDocValues> docValuesCall) (package private)
MV
(DocValuesTermsCollector.Function<SortedSetDocValues> docValuesCall, ScoreMode scoreMode)