Enum Class Aggregation

java.lang.Object
java.lang.Enum<Aggregation>
io.quarkus.redis.datasource.timeseries.Aggregation
All Implemented Interfaces:
Serializable, Comparable<Aggregation>, Constable

public enum Aggregation extends Enum<Aggregation>
Time Series Aggregation functions
  • Enum Constant Details

    • 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 Details

    • values

      public static Aggregation[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Aggregation valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Aggregation>