Uses of Class
org.apache.lucene.index.SortedSetDocValues
-
Packages that use SortedSetDocValues Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices. -
-
Uses of SortedSetDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return SortedSetDocValues Modifier and Type Method Description abstract SortedSetDocValuesDocValuesProducer. getSortedSet(FieldInfo field)ReturnsSortedSetDocValuesfor this field.Methods in org.apache.lucene.codecs with parameters of type SortedSetDocValues Modifier and Type Method Description static Iterable<BytesRef>LegacyDocValuesIterables. valuesIterable(SortedSetDocValues values)Deprecated.ConsumeSortedSetDocValuesinstead. -
Uses of SortedSetDocValues in org.apache.lucene.index
Subclasses of SortedSetDocValues in org.apache.lucene.index Modifier and Type Class Description classLegacySortedSetDocValuesWrapperDeprecated.ImplementSortedSetDocValuesdirectly.static classMultiDocValues.MultiSortedSetDocValuesImplements MultiSortedSetDocValues over n subs, using an OrdinalMapFields in org.apache.lucene.index declared as SortedSetDocValues Modifier and Type Field Description SortedSetDocValues[]MultiDocValues.MultiSortedSetDocValues. valuesleaf valuesMethods in org.apache.lucene.index that return SortedSetDocValues Modifier and Type Method Description static 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.SortedSetDocValuesEmptyDocValuesProducer. getSortedSet(FieldInfo field)SortedSetDocValuesCodecReader. getSortedSetDocValues(String field)SortedSetDocValuesFilterLeafReader. getSortedSetDocValues(String field)abstract SortedSetDocValuesLeafReader. getSortedSetDocValues(String field)ReturnsSortedSetDocValuesfor this field, or null if noSortedSetDocValueswere indexed for this field.SortedSetDocValuesParallelLeafReader. 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 SortedSetDocValues Modifier and Type Method Description static 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 SortedSetDocValues Constructor Description MultiSortedSetDocValues(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 SortedSetDocValues Modifier and Type Method Description static SortedDocValuesSortedSetSelector. wrap(SortedSetDocValues sortedSet, SortedSetSelector.Type selector)Wraps a multi-valued SortedSetDocValues as a single-valued view, using the specified selector
-