Enum Aggregation

    • Enum Constant Detail

      • AVG

        public static final Aggregation AVG
        Arithmetic mean of all values
      • SUM

        public static final Aggregation SUM
        Sum of all values
      • MIN

        public static final Aggregation MIN
        Minimum value
      • MAX

        public static final Aggregation MAX
        Maximum value
      • RANGE

        public static final Aggregation RANGE
        Difference between the highest and the lowest value
      • COUNT

        public static final Aggregation COUNT
        Number of values.
      • FIRST

        public static final Aggregation FIRST
        Value with lowest timestamp in the bucket
      • LAST

        public static final Aggregation LAST
        Value with highest timestamp in the bucket
      • STD_P

        public static final Aggregation STD_P
        Population standard deviation of the values
      • STD_S

        public static final Aggregation STD_S
        Sample standard deviation of the values
      • VAR_P

        public static final Aggregation VAR_P
        Population variance of the values
      • VAR_S

        public static final Aggregation VAR_S
        Sample variance of the values
      • TWA

        public static final Aggregation TWA
        Time-weighted average over the bucket's timeframe (since RedisTimeSeries v1.8)
    • Method Detail

      • values

        public static Aggregation[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Aggregation c : Aggregation.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Aggregation valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null