Class AggregateFunctionFeatures

  • All Implemented Interfaces:
    java.io.Serializable

    public class AggregateFunctionFeatures
    extends java.lang.Object
    implements java.io.Serializable
    Aggregate functions
    See Also:
    Serialized Form
    • Field Detail

      • TYPE_NAME

        public static final Name TYPE_NAME
      • FIELD_NAME_AVG

        public static final Name FIELD_NAME_AVG
      • FIELD_NAME_COLLECT

        public static final Name FIELD_NAME_COLLECT
      • FIELD_NAME_COUNT

        public static final Name FIELD_NAME_COUNT
      • FIELD_NAME_MAX

        public static final Name FIELD_NAME_MAX
      • FIELD_NAME_MIN

        public static final Name FIELD_NAME_MIN
      • FIELD_NAME_PERCENTILE_CONT

        public static final Name FIELD_NAME_PERCENTILE_CONT
      • FIELD_NAME_PERCENTILE_DISC

        public static final Name FIELD_NAME_PERCENTILE_DISC
      • FIELD_NAME_STDEV

        public static final Name FIELD_NAME_STDEV
      • FIELD_NAME_STDEVP

        public static final Name FIELD_NAME_STDEVP
      • FIELD_NAME_SUM

        public static final Name FIELD_NAME_SUM
      • avg

        public final java.lang.Boolean avg
        The avg() function / AVG. Returns the average of a set of DURATION values.; Returns the average of a set of FLOAT values.; Returns the average of a set of INTEGER values.
      • collect

        public final java.lang.Boolean collect
        The collect() function / COLLECT. Returns a list containing the values returned by an expression.
      • count

        public final java.lang.Boolean count
        The count() function / COUNT. Returns the number of values or rows.
      • max

        public final java.lang.Boolean max
        The max() function / MAX. Returns the maximum value in a set of values.
      • min

        public final java.lang.Boolean min
        The min() function / MIN. Returns the minimum value in a set of values.
      • percentileCont

        public final java.lang.Boolean percentileCont
        The percentileCont() function. Returns the percentile of a value over a group using linear interpolation.
      • percentileDisc

        public final java.lang.Boolean percentileDisc
        The percentileDisc() function. Returns the nearest FLOAT value to the given percentile over a group using a rounding method.; Returns the nearest INTEGER value to the given percentile over a group using a rounding method.
      • stdev

        public final java.lang.Boolean stdev
        The stdev() function. Returns the standard deviation for the given value over a group for a sample of a population.
      • stdevp

        public final java.lang.Boolean stdevp
        The stdevp() function. Returns the standard deviation for the given value over a group for an entire population.
      • sum

        public final java.lang.Boolean sum
        The sum() function / SUM. Returns the sum of a set of DURATION values.; Returns the sum of a set of FLOAT values.; Returns the sum of a set of INTEGER values.
    • Constructor Detail

      • AggregateFunctionFeatures

        public AggregateFunctionFeatures​(java.lang.Boolean avg,
                                         java.lang.Boolean collect,
                                         java.lang.Boolean count,
                                         java.lang.Boolean max,
                                         java.lang.Boolean min,
                                         java.lang.Boolean percentileCont,
                                         java.lang.Boolean percentileDisc,
                                         java.lang.Boolean stdev,
                                         java.lang.Boolean stdevp,
                                         java.lang.Boolean sum)