Module org.elasticsearch.compute
Class StdDevDoubleAggregator
java.lang.Object
org.elasticsearch.compute.aggregation.StdDevDoubleAggregator
A standard deviation aggregation definition for double.
This class is generated. Edit `X-StdDevAggregator.java.st` instead.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcombine(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState current, int groupId, double value) static voidcombine(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, double value) static voidcombineIntermediate(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, int groupId, double mean, double m2, long count) static voidcombineIntermediate(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, double mean, double m2, long count) static voidcombineStates(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState current, int groupId, org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, int statePosition) static BlockevaluateFinal(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, IntVector selected, DriverContext driverContext) static BlockevaluateFinal(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, DriverContext driverContext) static org.elasticsearch.compute.aggregation.StdDevStates.GroupingStateinitGrouping(BigArrays bigArrays) static org.elasticsearch.compute.aggregation.StdDevStates.SingleState
-
Constructor Details
-
StdDevDoubleAggregator
public StdDevDoubleAggregator()
-
-
Method Details
-
initSingle
public static org.elasticsearch.compute.aggregation.StdDevStates.SingleState initSingle() -
combine
public static void combine(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, double value) -
combineIntermediate
public static void combineIntermediate(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, double mean, double m2, long count) -
evaluateFinal
public static Block evaluateFinal(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, DriverContext driverContext) -
initGrouping
public static org.elasticsearch.compute.aggregation.StdDevStates.GroupingState initGrouping(BigArrays bigArrays) -
combine
public static void combine(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState current, int groupId, double value) -
combineStates
public static void combineStates(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState current, int groupId, org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, int statePosition) -
combineIntermediate
public static void combineIntermediate(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, int groupId, double mean, double m2, long count) -
evaluateFinal
public static Block evaluateFinal(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, IntVector selected, DriverContext driverContext)
-