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 classMethods in org.apache.lucene.backward_codecs.lucene70 that return SortedSetDocValuesMethods in org.apache.lucene.backward_codecs.lucene70 with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionprivate voidLucene70DocValuesConsumer.addTermsDict(SortedSetDocValues values) private voidLucene70DocValuesConsumer.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 classMethods in org.apache.lucene.backward_codecs.lucene80 that return SortedSetDocValuesMethods in org.apache.lucene.backward_codecs.lucene80 with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionprivate voidLucene80DocValuesConsumer.addTermsDict(SortedSetDocValues values) private voidLucene80DocValuesConsumer.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 SortedSetDocValuesDocValuesConsumer.SortedSetDocValuesSub.valuesMethods in org.apache.lucene.codecs that return SortedSetDocValuesModifier and TypeMethodDescriptionabstract SortedSetDocValuesDocValuesProducer.getSortedSet(FieldInfo field) ReturnsSortedSetDocValuesfor 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 voidLucene90DocValuesConsumer.addTermsDict(SortedSetDocValues values) private static booleanLucene90DocValuesConsumer.isSingleValued(SortedSetDocValues values) private voidLucene90DocValuesConsumer.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 TypeClassDescriptionclassDelegates all methods to a wrappedSortedSetDocValues.static classImplements MultiSortedSetDocValues over n subs, using an OrdinalMap(package private) final classExposes multi-valued iterator view over a single-valued iterator.private static class(package private) static classFields in org.apache.lucene.index declared as SortedSetDocValuesModifier and TypeFieldDescriptionprivate SortedSetDocValuesMultiDocValues.MultiSortedSetDocValues.currentValuesprotected final SortedSetDocValuesFilterSortedSetDocValues.inWrapped valuesprivate final SortedSetDocValuesSortedSetDocValuesWriter.SortingSortedSetDocValues.infinal SortedSetDocValues[]MultiDocValues.MultiSortedSetDocValues.valuesleaf valuesprivate final SortedSetDocValuesSortedSetDocValuesTermsEnum.valuesMethods in org.apache.lucene.index that return SortedSetDocValuesModifier and TypeMethodDescriptionstatic final SortedSetDocValuesDocValues.emptySortedSet()An empty SortedDocValues which returnsBytesRef.EMPTY_BYTESfor every document(package private) SortedSetDocValuesSortedSetDocValuesWriter.getDocValues()static SortedSetDocValuesDocValues.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 SortedSetDocValuesCodecReader.getSortedSetDocValues(String field) ExitableDirectoryReader.ExitableFilterAtomicReader.getSortedSetDocValues(String field) FilterLeafReader.getSortedSetDocValues(String field) abstract SortedSetDocValuesLeafReader.getSortedSetDocValues(String field) ReturnsSortedSetDocValuesfor this field, or null if noSortedSetDocValueswere indexed for this field.ParallelLeafReader.getSortedSetDocValues(String field) static SortedSetDocValuesMultiDocValues.getSortedSetValues(IndexReader r, String field) Returns a SortedSetDocValues for a reader's docvalues (potentially doing extremely slow things).private SortedSetDocValuesSortedSetDocValuesWriter.getValues(int[] sortedValues, int[] ordMap, BytesRefHash hash, PackedLongValues ords, PackedLongValues ordCounts, int maxCount, DocsWithFieldSet docsWithField) static SortedSetDocValuesDocValues.singleton(SortedDocValues dv) Returns a multi-valued view over the provided SortedDocValuesMethods in org.apache.lucene.index with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionstatic OrdinalMapOrdinalMap.build(IndexReader.CacheKey owner, SortedSetDocValues[] values, float acceptableOverheadRatio) Create an ordinal map that uses the number of unique values of eachSortedSetDocValuesinstance as a weight.private static voidCheckIndex.checkSortedSetDocValues(String fieldName, SortedSetDocValues dv, SortedSetDocValues dv2) static SortedDocValuesDocValues.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 overvaluesCreates 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 SortedSetDocValuesMemoryIndex.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 SortedSetDocValuesDocValuesStats.SortedSetDocValuesStats.ssdv -
Uses of SortedSetDocValues in org.apache.lucene.search
Fields in org.apache.lucene.search declared as SortedSetDocValuesModifier and TypeFieldDescription(package private) final SortedSetDocValuesSortedSetSelector.MaxValue.in(package private) final SortedSetDocValuesSortedSetSelector.MiddleMaxValue.in(package private) final SortedSetDocValuesSortedSetSelector.MiddleMinValue.in(package private) final SortedSetDocValuesSortedSetSelector.MinValue.inMethods in org.apache.lucene.search with parameters of type SortedSetDocValuesModifier and TypeMethodDescriptionstatic SortedDocValuesSortedSetSelector.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 SortedSetDocValuesTermGroupFacetCollector.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 SortedDocValuesBlockJoinSelector.wrap(SortedSetDocValues sortedSet, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children) Wraps the providedSortedSetDocValuesin order to only select one value per parent among itschildrenusing the configuredselectiontype.Method parameters in org.apache.lucene.search.join with type arguments of type SortedSetDocValuesModifier and TypeMethodDescriptionstatic GenericTermsCollectorGenericTermsCollector.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)