Class StdDevLongAggregator

java.lang.Object
org.elasticsearch.compute.aggregation.StdDevLongAggregator

public class StdDevLongAggregator extends Object
A standard deviation aggregation definition for long. This class is generated. Edit `X-StdDevAggregator.java.st` instead.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    combine(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState current, int groupId, long value)
     
    static void
    combine(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, long value)
     
    static void
    combineIntermediate(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, int groupId, double mean, double m2, long count)
     
    static void
    combineIntermediate(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, double mean, double m2, long count)
     
    static void
    combineStates(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState current, int groupId, org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, int statePosition)
     
    static Block
    evaluateFinal(org.elasticsearch.compute.aggregation.StdDevStates.GroupingState state, IntVector selected, DriverContext driverContext)
     
    static Block
    evaluateFinal(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, DriverContext driverContext)
     
    static org.elasticsearch.compute.aggregation.StdDevStates.GroupingState
     
    static org.elasticsearch.compute.aggregation.StdDevStates.SingleState
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • StdDevLongAggregator

      public StdDevLongAggregator()
  • Method Details

    • initSingle

      public static org.elasticsearch.compute.aggregation.StdDevStates.SingleState initSingle()
    • combine

      public static void combine(org.elasticsearch.compute.aggregation.StdDevStates.SingleState state, long 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, long 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)