Uses of Class
org.apache.lucene.index.SortedSetDocValues
Packages that use SortedSetDocValues
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
Code to maintain and access indices.
Code to search indices.
-
Uses of SortedSetDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return SortedSetDocValuesModifier and TypeMethodDescriptionprotected static SortedSetDocValuesDocValuesConsumer.getMergedSortedSetDocValues(FieldInfo mergeFieldInfo, MergeState mergeState, OrdinalMap map, List<SortedSetDocValues> toMerge) Returns a sorted set doc values instance from all producers in the provided merge state.abstract SortedSetDocValuesDocValuesProducer.getSortedSet(FieldInfo field) ReturnsSortedSetDocValuesfor this field.Methods in org.apache.lucene.codecs that return types with arguments of type SortedSetDocValuesModifier and TypeMethodDescriptionprotected static List<SortedSetDocValues> DocValuesConsumer.selectLeavesToMerge(FieldInfo mergeFieldInfo, MergeState mergeState) Selects the sorted set doc values to merge.Method parameters in org.apache.lucene.codecs with type arguments of type SortedSetDocValuesModifier and TypeMethodDescriptionprotected static OrdinalMapDocValuesConsumer.createOrdinalMapForSortedSetDV(List<SortedSetDocValues> toMerge, MergeState mergeState) Creates an ordinal map based on the provided sorted set doc values to mergesprotected static SortedSetDocValuesDocValuesConsumer.getMergedSortedSetDocValues(FieldInfo mergeFieldInfo, MergeState mergeState, OrdinalMap map, List<SortedSetDocValues> toMerge) Returns a sorted set doc values instance from all producers in the provided merge state. -
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 OrdinalMapFields in org.apache.lucene.index declared as SortedSetDocValuesModifier and TypeFieldDescriptionprotected final SortedSetDocValuesFilterSortedSetDocValues.inWrapped valuesfinal SortedSetDocValues[]MultiDocValues.MultiSortedSetDocValues.valuesleaf valuesMethods in org.apache.lucene.index that return SortedSetDocValuesModifier and TypeMethodDescriptionstatic final SortedSetDocValuesDocValues.emptySortedSet()An empty SortedDocValues which returnsBytesRef.EMPTY_BYTESfor every documentstatic SortedSetDocValuesDocValues.getSortedSet(LeafReader reader, String field) Returns SortedSetDocValues for the field, orDocValues.emptySortedSet()if it has none.EmptyDocValuesProducer.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).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.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 SortedSetDocValuesModifierConstructorDescriptionInitializes delegateMultiSortedSetDocValues(SortedSetDocValues[] values, int[] docStarts, OrdinalMap mapping, long totalCost) Creates a new MultiSortedSetDocValues overvalues -
Uses of SortedSetDocValues in org.apache.lucene.search
Methods 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 selector