Package com.redis.lettucemod.protocol
Enum TimeSeriesCommandKeyword
- java.lang.Object
-
- java.lang.Enum<TimeSeriesCommandKeyword>
-
- com.redis.lettucemod.protocol.TimeSeriesCommandKeyword
-
- All Implemented Interfaces:
io.lettuce.core.protocol.ProtocolKeyword,java.io.Serializable,java.lang.Comparable<TimeSeriesCommandKeyword>
public enum TimeSeriesCommandKeyword extends java.lang.Enum<TimeSeriesCommandKeyword> implements io.lettuce.core.protocol.ProtocolKeyword
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGGREGATIONALIGNBLOCKBUCKETTIMESTAMPCHUNK_SIZECOMPRESSEDCOUNTDEBUGDUPLICATE_POLICYEMPTYENCODINGENDFILTERFILTER_BY_TSFILTER_BY_VALUEFIRSTGROUPBYLABELSLASTLATESTMAXMIDMINON_DUPLICATEREDUCERETENTIONSELECTED_LABELSSTARTSUMTIMESTAMPUNCOMPRESSEDWITHLABELS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getBytes()static TimeSeriesCommandKeywordvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TimeSeriesCommandKeyword[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RETENTION
public static final TimeSeriesCommandKeyword RETENTION
-
COMPRESSED
public static final TimeSeriesCommandKeyword COMPRESSED
-
UNCOMPRESSED
public static final TimeSeriesCommandKeyword UNCOMPRESSED
-
CHUNK_SIZE
public static final TimeSeriesCommandKeyword CHUNK_SIZE
-
DUPLICATE_POLICY
public static final TimeSeriesCommandKeyword DUPLICATE_POLICY
-
ON_DUPLICATE
public static final TimeSeriesCommandKeyword ON_DUPLICATE
-
LABELS
public static final TimeSeriesCommandKeyword LABELS
-
AGGREGATION
public static final TimeSeriesCommandKeyword AGGREGATION
-
TIMESTAMP
public static final TimeSeriesCommandKeyword TIMESTAMP
-
COUNT
public static final TimeSeriesCommandKeyword COUNT
-
WITHLABELS
public static final TimeSeriesCommandKeyword WITHLABELS
-
SELECTED_LABELS
public static final TimeSeriesCommandKeyword SELECTED_LABELS
-
FILTER
public static final TimeSeriesCommandKeyword FILTER
-
DEBUG
public static final TimeSeriesCommandKeyword DEBUG
-
FILTER_BY_TS
public static final TimeSeriesCommandKeyword FILTER_BY_TS
-
FILTER_BY_VALUE
public static final TimeSeriesCommandKeyword FILTER_BY_VALUE
-
ALIGN
public static final TimeSeriesCommandKeyword ALIGN
-
BUCKETTIMESTAMP
public static final TimeSeriesCommandKeyword BUCKETTIMESTAMP
-
EMPTY
public static final TimeSeriesCommandKeyword EMPTY
-
GROUPBY
public static final TimeSeriesCommandKeyword GROUPBY
-
REDUCE
public static final TimeSeriesCommandKeyword REDUCE
-
START
public static final TimeSeriesCommandKeyword START
-
END
public static final TimeSeriesCommandKeyword END
-
BLOCK
public static final TimeSeriesCommandKeyword BLOCK
-
FIRST
public static final TimeSeriesCommandKeyword FIRST
-
LAST
public static final TimeSeriesCommandKeyword LAST
-
MIN
public static final TimeSeriesCommandKeyword MIN
-
MAX
public static final TimeSeriesCommandKeyword MAX
-
SUM
public static final TimeSeriesCommandKeyword SUM
-
MID
public static final TimeSeriesCommandKeyword MID
-
ENCODING
public static final TimeSeriesCommandKeyword ENCODING
-
LATEST
public static final TimeSeriesCommandKeyword LATEST
-
-
Method Detail
-
values
public static TimeSeriesCommandKeyword[] 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 (TimeSeriesCommandKeyword c : TimeSeriesCommandKeyword.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeSeriesCommandKeyword 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
-
getBytes
public byte[] getBytes()
- Specified by:
getBytesin interfaceio.lettuce.core.protocol.ProtocolKeyword
-
-