Package redis.clients.jedis.bloom
Enum RedisBloomProtocol.TDigestCommand
- java.lang.Object
-
- java.lang.Enum<RedisBloomProtocol.TDigestCommand>
-
- redis.clients.jedis.bloom.RedisBloomProtocol.TDigestCommand
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RedisBloomProtocol.TDigestCommand>,Rawable,ProtocolCommand
- Enclosing class:
- RedisBloomProtocol
public static enum RedisBloomProtocol.TDigestCommand extends java.lang.Enum<RedisBloomProtocol.TDigestCommand> implements ProtocolCommand
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getRaw()Get byte array representation.static RedisBloomProtocol.TDigestCommandvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RedisBloomProtocol.TDigestCommand[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final RedisBloomProtocol.TDigestCommand CREATE
-
INFO
public static final RedisBloomProtocol.TDigestCommand INFO
-
ADD
public static final RedisBloomProtocol.TDigestCommand ADD
-
RESET
public static final RedisBloomProtocol.TDigestCommand RESET
-
MERGE
public static final RedisBloomProtocol.TDigestCommand MERGE
-
CDF
public static final RedisBloomProtocol.TDigestCommand CDF
-
QUANTILE
public static final RedisBloomProtocol.TDigestCommand QUANTILE
-
MIN
public static final RedisBloomProtocol.TDigestCommand MIN
-
MAX
public static final RedisBloomProtocol.TDigestCommand MAX
-
TRIMMED_MEAN
public static final RedisBloomProtocol.TDigestCommand TRIMMED_MEAN
-
RANK
public static final RedisBloomProtocol.TDigestCommand RANK
-
REVRANK
public static final RedisBloomProtocol.TDigestCommand REVRANK
-
BYRANK
public static final RedisBloomProtocol.TDigestCommand BYRANK
-
BYREVRANK
public static final RedisBloomProtocol.TDigestCommand BYREVRANK
-
-
Method Detail
-
values
public static RedisBloomProtocol.TDigestCommand[] 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 (RedisBloomProtocol.TDigestCommand c : RedisBloomProtocol.TDigestCommand.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RedisBloomProtocol.TDigestCommand 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
-
-