Uses of Class
org.elasticsearch.index.fielddata.NumericDoubleValues
-
Packages that use NumericDoubleValues Package Description org.elasticsearch.index.fielddata org.elasticsearch.index.query.functionscore org.elasticsearch.search -
-
Uses of NumericDoubleValues in org.elasticsearch.index.fielddata
Methods in org.elasticsearch.index.fielddata that return NumericDoubleValues Modifier and Type Method Description static NumericDoubleValuesFieldData. emptyNumericDouble()Return aNumericDoubleValuesthat doesn't contain any value.static NumericDoubleValuesFieldData. replaceMissing(NumericDoubleValues values, double missing)Return aNumericDoubleValuesinstance that has a value for every document, returns the same value asvaluesif there is a value for the current document andmissingotherwise.static NumericDoubleValuesFieldData. unwrapSingleton(SortedNumericDoubleValues values)Returns a single-valued view of theSortedNumericDoubleValues, if it was previously wrapped withDocValues.singleton(NumericDocValues), or null.Methods in org.elasticsearch.index.fielddata with parameters of type NumericDoubleValues Modifier and Type Method Description static NumericDoubleValuesFieldData. replaceMissing(NumericDoubleValues values, double missing)Return aNumericDoubleValuesinstance that has a value for every document, returns the same value asvaluesif there is a value for the current document andmissingotherwise.static SortedNumericDoubleValuesFieldData. singleton(NumericDoubleValues values)Returns a multi-valued view over the providedNumericDoubleValues. -
Uses of NumericDoubleValues in org.elasticsearch.index.query.functionscore
Methods in org.elasticsearch.index.query.functionscore that return NumericDoubleValues Modifier and Type Method Description protected abstract NumericDoubleValuesDecayFunctionBuilder.AbstractDistanceScoreFunction. distance(LeafReaderContext context)This function computes the distance from a defined origin. -
Uses of NumericDoubleValues in org.elasticsearch.search
Methods in org.elasticsearch.search that return NumericDoubleValues Modifier and Type Method Description NumericDoubleValuesMultiValueMode. select(SortedNumericDoubleValues values)Return aNumericDoubleValuesinstance that can be used to sort documents with this mode and the provided values.NumericDoubleValuesMultiValueMode. select(SortedNumericDoubleValues values, double missingValue, BitSet parentDocs, DocIdSetIterator childDocs, int maxDoc, int maxChildren)Return aNumericDoubleValuesinstance that can be used to sort root documents with this mode, the provided values and filters for root/inner documents.
-