Package com.redis.lettucemod.timeseries
Enum Aggregation.BucketTimestamp
- java.lang.Object
-
- java.lang.Enum<Aggregation.BucketTimestamp>
-
- com.redis.lettucemod.timeseries.Aggregation.BucketTimestamp
-
- All Implemented Interfaces:
io.lettuce.core.CompositeArgument,java.io.Serializable,java.lang.Comparable<Aggregation.BucketTimestamp>
- Enclosing class:
- Aggregation
public static enum Aggregation.BucketTimestamp extends java.lang.Enum<Aggregation.BucketTimestamp> implements io.lettuce.core.CompositeArgument
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <K,V>
voidbuild(io.lettuce.core.protocol.CommandArgs<K,V> args)static Aggregation.BucketTimestampvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Aggregation.BucketTimestamp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW
public static final Aggregation.BucketTimestamp LOW
-
HIGH
public static final Aggregation.BucketTimestamp HIGH
-
MID
public static final Aggregation.BucketTimestamp MID
-
-
Method Detail
-
values
public static Aggregation.BucketTimestamp[] 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.BucketTimestamp c : Aggregation.BucketTimestamp.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.BucketTimestamp 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
-
build
public <K,V> void build(io.lettuce.core.protocol.CommandArgs<K,V> args)
- Specified by:
buildin interfaceio.lettuce.core.CompositeArgument
-
-