Package com.redis.lettucemod.timeseries
Enum MRangeOptions.Reducer
- java.lang.Object
-
- java.lang.Enum<MRangeOptions.Reducer>
-
- com.redis.lettucemod.timeseries.MRangeOptions.Reducer
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MRangeOptions.Reducer>
- Enclosing class:
- MRangeOptions<K,V>
public static enum MRangeOptions.Reducer extends java.lang.Enum<MRangeOptions.Reducer>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MRangeOptions.ReducervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MRangeOptions.Reducer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUM
public static final MRangeOptions.Reducer SUM
-
MIN
public static final MRangeOptions.Reducer MIN
-
MAX
public static final MRangeOptions.Reducer MAX
-
-
Method Detail
-
values
public static MRangeOptions.Reducer[] 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 (MRangeOptions.Reducer c : MRangeOptions.Reducer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MRangeOptions.Reducer valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-