Uses of Class
org.apache.lucene.index.SortedSetDocValues
-
-
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. -
Uses of SortedSetDocValues in org.apache.lucene.index
Methods 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.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. -
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 -
Uses of SortedSetDocValues in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight that return SortedSetDocValues Modifier and Type Method Description SortedSetDocValuesTermVectorLeafReader. getSortedSetDocValues(String field) -
Uses of SortedSetDocValues in org.elasticsearch.index.fielddata
Subclasses of SortedSetDocValues in org.elasticsearch.index.fielddata Modifier and Type Class Description classAbstractSortedSetDocValuesBase implementation that throws anIOExceptionfor theDocIdSetIteratorAPIs.Methods in org.elasticsearch.index.fielddata that return SortedSetDocValues Modifier and Type Method Description SortedSetDocValuesAtomicOrdinalsFieldData. getOrdinalsValues()Return the ordinals values for the current atomic reader.Methods in org.elasticsearch.index.fielddata with parameters of type SortedSetDocValues Modifier and Type Method Description static DocValueBitsFieldData. docsWithValue(SortedSetDocValues docValues)Returns aDocValueBitsrepresenting all documents fromdocValuesthat have a value.static booleanFieldData. isMultiValued(SortedSetDocValues values)Returns whether the provided values *might* be multi-valued.static SortedBinaryDocValuesFieldData. toString(SortedSetDocValues values)Return aStringrepresentation of the provided values. -
Uses of SortedSetDocValues in org.elasticsearch.index.fielddata.ordinals
Methods in org.elasticsearch.index.fielddata.ordinals that return SortedSetDocValues Modifier and Type Method Description SortedSetDocValuesMultiOrdinals. ordinals(Ordinals.ValuesHolder values)SortedSetDocValuesOrdinals. ordinals()abstract SortedSetDocValuesOrdinals. ordinals(Ordinals.ValuesHolder values)SortedSetDocValuesSinglePackedOrdinals. ordinals(Ordinals.ValuesHolder values)Method parameters in org.elasticsearch.index.fielddata.ordinals with type arguments of type SortedSetDocValues Modifier and Type Method Description static IndexOrdinalsFieldDataGlobalOrdinalsBuilder. build(IndexReader indexReader, IndexOrdinalsFieldData indexFieldData, IndexSettings indexSettings, CircuitBreakerService breakerService, org.apache.logging.log4j.Logger logger, Function<SortedSetDocValues,ScriptDocValues<?>> scriptFunction)Build global ordinals for the providedIndexReader.Constructor parameters in org.elasticsearch.index.fielddata.ordinals with type arguments of type SortedSetDocValues Constructor Description GlobalOrdinalsIndexFieldData(IndexSettings indexSettings, String fieldName, AtomicOrdinalsFieldData[] segmentAfd, OrdinalMap ordinalMap, long memorySizeInBytes, Function<SortedSetDocValues,ScriptDocValues<?>> scriptFunction) -
Uses of SortedSetDocValues in org.elasticsearch.index.fielddata.plain
Fields in org.elasticsearch.index.fielddata.plain with type parameters of type SortedSetDocValues Modifier and Type Field Description static Function<SortedSetDocValues,ScriptDocValues<?>>AbstractAtomicOrdinalsFieldData. DEFAULT_SCRIPT_FUNCTIONMethods in org.elasticsearch.index.fielddata.plain that return SortedSetDocValues Modifier and Type Method Description SortedSetDocValuesPagedBytesAtomicFieldData. getOrdinalsValues()SortedSetDocValuesSortedSetDVBytesAtomicFieldData. getOrdinalsValues()Method parameters in org.elasticsearch.index.fielddata.plain with type arguments of type SortedSetDocValues Modifier and Type Method Description DocValuesIndexFieldData.BuilderDocValuesIndexFieldData.Builder. scriptFunction(Function<SortedSetDocValues,ScriptDocValues<?>> scriptFunction)Constructor parameters in org.elasticsearch.index.fielddata.plain with type arguments of type SortedSetDocValues Constructor Description AbstractAtomicOrdinalsFieldData(Function<SortedSetDocValues,ScriptDocValues<?>> scriptFunction)SortedSetDVOrdinalsIndexFieldData(IndexSettings indexSettings, IndexFieldDataCache cache, String fieldName, CircuitBreakerService breakerService, Function<SortedSetDocValues,ScriptDocValues<?>> scriptFunction) -
Uses of SortedSetDocValues in org.elasticsearch.index.mapper
Constructors in org.elasticsearch.index.mapper with parameters of type SortedSetDocValues Constructor Description IpScriptDocValues(SortedSetDocValues in) -
Uses of SortedSetDocValues in org.elasticsearch.search
Methods in org.elasticsearch.search with parameters of type SortedSetDocValues Modifier and Type Method Description protected intMultiValueMode. pick(SortedSetDocValues values)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. -
Uses of SortedSetDocValues in org.elasticsearch.search.aggregations.bucket.terms
Methods in org.elasticsearch.search.aggregations.bucket.terms with parameters of type SortedSetDocValues Modifier and Type Method Description abstract LongBitSetIncludeExclude.OrdinalsFilter. acceptedGlobalOrdinals(SortedSetDocValues globalOrdinals) -
Uses of SortedSetDocValues in org.elasticsearch.search.aggregations.support
Methods in org.elasticsearch.search.aggregations.support that return SortedSetDocValues Modifier and Type Method Description SortedSetDocValuesValuesSource.Bytes.WithOrdinals.FieldData. globalOrdinalsValues(LeafReaderContext context)abstract SortedSetDocValuesValuesSource.Bytes.WithOrdinals. globalOrdinalsValues(LeafReaderContext context)SortedSetDocValuesValuesSource.Bytes.WithOrdinals.FieldData. ordinalsValues(LeafReaderContext context)abstract SortedSetDocValuesValuesSource.Bytes.WithOrdinals. ordinalsValues(LeafReaderContext context)
-