Package com.redislabs.redistimeseries
Enum Aggregation
- java.lang.Object
-
- java.lang.Enum<Aggregation>
-
- com.redislabs.redistimeseries.Aggregation
-
- All Implemented Interfaces:
Serializable,Comparable<Aggregation>
public enum Aggregation extends Enum<Aggregation>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getRaw()static AggregationvalueOf(String name)Returns the enum constant of this type with the specified name.static Aggregation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVG
public static final Aggregation AVG
-
SUM
public static final Aggregation SUM
-
MIN
public static final Aggregation MIN
-
MAX
public static final Aggregation MAX
-
RANGE
public static final Aggregation RANGE
-
COUNT
public static final Aggregation COUNT
-
FIRST
public static final Aggregation FIRST
-
LAST
public static final Aggregation LAST
-
STD_P
public static final Aggregation STD_P
-
STD_S
public static final Aggregation STD_S
-
VAR_P
public static final Aggregation VAR_P
-
VAR_S
public static final Aggregation VAR_S
-
-
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 nameNullPointerException- if the argument is null
-
getRaw
public byte[] getRaw()
-
-