Uses of Interface
org.apache.solr.analytics.value.DoubleValue
-
Packages that use DoubleValue Package Description org.apache.solr.analytics.function.field Fields to use for analytics expressions.org.apache.solr.analytics.function.mapping Mapping functions to use for analytics expressions.org.apache.solr.analytics.function.reduction Reduction functions to use for analytics expressions.org.apache.solr.analytics.value Value types for analytics expressions.org.apache.solr.analytics.value.constant Constant values to be used in analytics expressions. -
-
Uses of DoubleValue in org.apache.solr.analytics.function.field
Classes in org.apache.solr.analytics.function.field that implement DoubleValue Modifier and Type Class Description classDoubleFieldAn analytics wrapper for a single-valuedTrieDoubleFieldorDoublePointFieldwith DocValues enabled.classFloatFieldAn analytics wrapper for a single-valuedTrieFloatFieldorFloatPointFieldwith DocValues enabled.classIntFieldAn analytics wrapper for a single-valuedTrieIntFieldorIntPointFieldwith DocValues enabled.classLongFieldAn analytics wrapper for a single-valuedTrieLongFieldorLongPointFieldwith DocValues enabled. -
Uses of DoubleValue in org.apache.solr.analytics.function.mapping
Methods in org.apache.solr.analytics.function.mapping that return DoubleValue Modifier and Type Method Description static DoubleValueLambdaFunction. createDoubleLambdaFunction(String name, LambdaFunction.TwoDoubleInDoubleOutLambda lambda, DoubleValue[] params)Forwards the creation of the function toLambdaFunction.createDoubleLambdaFunction(String, TwoDoubleInDoubleOutLambda, DoubleValue[], boolean), using true for the last argument (allMustExist).static DoubleValueLambdaFunction. createDoubleLambdaFunction(String name, LambdaFunction.TwoDoubleInDoubleOutLambda lambda, DoubleValue[] params, boolean allMustExist)Creates a function that associatively (order is guaranteed) reduces multiple single-value double expressions into a single-value double expression for each document.static DoubleValueLambdaFunction. createDoubleLambdaFunction(String name, LambdaFunction.TwoDoubleInDoubleOutLambda lambda, DoubleValueStream param)Creates a function that takes in a multi-valued double expression and returns a single-valued double expression.Methods in org.apache.solr.analytics.function.mapping with parameters of type DoubleValue Modifier and Type Method Description static DoubleValueLambdaFunction. createDoubleLambdaFunction(String name, LambdaFunction.TwoDoubleInDoubleOutLambda lambda, DoubleValue[] params)Forwards the creation of the function toLambdaFunction.createDoubleLambdaFunction(String, TwoDoubleInDoubleOutLambda, DoubleValue[], boolean), using true for the last argument (allMustExist).static DoubleValueLambdaFunction. createDoubleLambdaFunction(String name, LambdaFunction.TwoDoubleInDoubleOutLambda lambda, DoubleValue[] params, boolean allMustExist)Creates a function that associatively (order is guaranteed) reduces multiple single-value double expressions into a single-value double expression for each document. -
Uses of DoubleValue in org.apache.solr.analytics.function.reduction
Classes in org.apache.solr.analytics.function.reduction that implement DoubleValue Modifier and Type Class Description classCountFunctionA reduction function which either counts the number of values that the parameter expression contains, or the number of documents returned if no parameter is given.classDocCountFunctionA reduction function which either counts the number of Solr Documents for which the parameter expression exists, or the number of documents returned if no parameter is given.classMeanFunctionA reduction function which returns the mean of the values of the given expression.classMissingFunctionA reduction function which returns the number of documents for which the given expression does not exist.classSumFunctionA reduction function which returns the sum of the values of the given expression.classUniqueFunctionA reduction function which returns the number of unique values of the given expression. -
Uses of DoubleValue in org.apache.solr.analytics.value
Subinterfaces of DoubleValue in org.apache.solr.analytics.value Modifier and Type Interface Description static interfaceDoubleValue.CastingDoubleValueAn interface that represents all of the types aDoubleValueshould be able to cast to.static interfaceFloatValue.CastingFloatValueAn interface that represents all of the types aFloatValueshould be able to cast to.static interfaceIntValue.CastingIntValueAn interface that represents all of the types aIntValueshould be able to cast to.static interfaceLongValue.CastingLongValueAn interface that represents all of the types aLongValueshould be able to cast to.Classes in org.apache.solr.analytics.value that implement DoubleValue Modifier and Type Class Description static classDoubleValue.AbstractDoubleValueAn abstract base forDoubleValue.CastingDoubleValuethat automatically casts to all types ifgetDouble()andAnalyticsValue.exists()are implemented.static classFloatValue.AbstractFloatValueAn abstract base forFloatValue.CastingFloatValuethat automatically casts to all types ifFloatValue.getFloat()andAnalyticsValue.exists()are implemented.static classIntValue.AbstractIntValueAn abstract base forIntValue.CastingIntValuethat automatically casts to all types ifIntValue.getInt()andAnalyticsValue.exists()are implemented.static classLongValue.AbstractLongValueAn abstract base forLongValue.CastingLongValuethat automatically casts to all types ifLongValue.getLong()andAnalyticsValue.exists()are implemented. -
Uses of DoubleValue in org.apache.solr.analytics.value.constant
Classes in org.apache.solr.analytics.value.constant that implement DoubleValue Modifier and Type Class Description classConstantDoubleValueA constantDoubleValue.classConstantFloatValueA constantFloatValue.classConstantIntValueA constantIntValue.classConstantLongValueA constantLongValue.
-