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 SortedSetDocValues
DocValuesProducer. getSortedSet(FieldInfo field)
ReturnsSortedSetDocValues
for this field. -
Uses of SortedSetDocValues in org.apache.lucene.index
Subclasses of SortedSetDocValues in org.apache.lucene.index Modifier and Type Class Description class
FilterSortedSetDocValues
Delegates all methods to a wrappedSortedSetDocValues
.static class
MultiDocValues.MultiSortedSetDocValues
Implements MultiSortedSetDocValues over n subs, using an OrdinalMapFields in org.apache.lucene.index declared as SortedSetDocValues Modifier and Type Field Description protected SortedSetDocValues
FilterSortedSetDocValues. in
Wrapped valuesSortedSetDocValues[]
MultiDocValues.MultiSortedSetDocValues. values
leaf valuesMethods in org.apache.lucene.index that return SortedSetDocValues Modifier and Type Method Description static SortedSetDocValues
DocValues. emptySortedSet()
An empty SortedDocValues which returnsBytesRef.EMPTY_BYTES
for every documentstatic SortedSetDocValues
DocValues. getSortedSet(LeafReader reader, String field)
Returns SortedSetDocValues for the field, orDocValues.emptySortedSet()
if it has none.SortedSetDocValues
EmptyDocValuesProducer. getSortedSet(FieldInfo field)
SortedSetDocValues
CodecReader. getSortedSetDocValues(String field)
SortedSetDocValues
ExitableDirectoryReader.ExitableFilterAtomicReader. getSortedSetDocValues(String field)
SortedSetDocValues
FilterLeafReader. getSortedSetDocValues(String field)
abstract SortedSetDocValues
LeafReader. getSortedSetDocValues(String field)
ReturnsSortedSetDocValues
for this field, or null if noSortedSetDocValues
were indexed for this field.SortedSetDocValues
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).static SortedSetDocValues
DocValues. 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 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.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 SortedSetDocValues Constructor Description FilterSortedSetDocValues(SortedSetDocValues in)
Initializes 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 SortedSetDocValues Modifier and Type Method Description static SortedDocValues
SortedSetSelector. wrap(SortedSetDocValues sortedSet, SortedSetSelector.Type selector)
Wraps a multi-valued SortedSetDocValues as a single-valued view, using the specified selector
-