Uses of Class
org.apache.lucene.index.SortedDocValues
-
-
Uses of SortedDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return SortedDocValues Modifier and Type Method Description abstract SortedDocValuesDocValuesProducer. getSorted(FieldInfo field)ReturnsSortedDocValuesfor this field. -
Uses of SortedDocValues in org.apache.lucene.index
Methods in org.apache.lucene.index that return SortedDocValues Modifier and Type Method Description static SortedDocValuesDocValues. emptySorted()An empty SortedDocValues which returnsBytesRef.EMPTY_BYTESfor every documentstatic SortedDocValuesDocValues. getSorted(LeafReader reader, String field)Returns SortedDocValues for the field, orDocValues.emptySorted()if it has none.SortedDocValuesEmptyDocValuesProducer. getSorted(FieldInfo field)SortedDocValuesCodecReader. getSortedDocValues(String field)SortedDocValuesFilterLeafReader. getSortedDocValues(String field)abstract SortedDocValuesLeafReader. getSortedDocValues(String field)ReturnsSortedDocValuesfor this field, or null if noSortedDocValueswere indexed for this field.static SortedDocValuesDocValues. unwrapSingleton(SortedSetDocValues dv)Returns a single-valued view of the SortedSetDocValues, if it was previously wrapped withDocValues.singleton(SortedDocValues), or null.Methods in org.apache.lucene.index with parameters of type SortedDocValues Modifier and Type Method Description static OrdinalMapOrdinalMap. build(IndexReader.CacheKey owner, SortedDocValues[] values, float acceptableOverheadRatio)Create an ordinal map that uses the number of unique values of eachSortedDocValuesinstance as a weight.static SortedSetDocValuesDocValues. singleton(SortedDocValues dv)Returns a multi-valued view over the provided SortedDocValues -
Uses of SortedDocValues in org.apache.lucene.search
Methods in org.apache.lucene.search that return SortedDocValues Modifier and Type Method Description protected SortedDocValuesFieldComparator.TermOrdValComparator. getSortedDocValues(LeafReaderContext context, String field)Retrieves the SortedDocValues for the field in this segmentstatic SortedDocValuesSortedSetSelector. wrap(SortedSetDocValues sortedSet, SortedSetSelector.Type selector)Wraps a multi-valued SortedSetDocValues as a single-valued view, using the specified selector -
Uses of SortedDocValues in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight that return SortedDocValues Modifier and Type Method Description SortedDocValuesTermVectorLeafReader. getSortedDocValues(String field) -
Uses of SortedDocValues in org.elasticsearch.index.fielddata
Subclasses of SortedDocValues in org.elasticsearch.index.fielddata Modifier and Type Class Description classAbstractSortedDocValuesBase implementation that throws anIOExceptionfor theDocIdSetIteratorAPIs. -
Uses of SortedDocValues in org.elasticsearch.search
Methods in org.elasticsearch.search that return SortedDocValues Modifier and Type Method Description SortedDocValuesMultiValueMode. select(SortedSetDocValues values)Return aSortedDocValuesinstance that can be used to sort documents with this mode and the provided values.SortedDocValuesMultiValueMode. select(SortedSetDocValues values, BitSet parentDocs, DocIdSetIterator childDocs, int maxChildren)Return aSortedDocValuesinstance that can be used to sort root documents with this mode, the provided values and filters for root/inner documents.Methods in org.elasticsearch.search with parameters of type SortedDocValues Modifier and Type Method Description protected intMultiValueMode. pick(SortedDocValues values, DocIdSetIterator docItr, int startDoc, int endDoc, int maxChildren)
-