Package redis.clients.jedis.bloom
Enum RedisBloomProtocol.BloomFilterCommand
- java.lang.Object
-
- java.lang.Enum<RedisBloomProtocol.BloomFilterCommand>
-
- redis.clients.jedis.bloom.RedisBloomProtocol.BloomFilterCommand
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RedisBloomProtocol.BloomFilterCommand>,Rawable,ProtocolCommand
- Enclosing class:
- RedisBloomProtocol
public static enum RedisBloomProtocol.BloomFilterCommand extends java.lang.Enum<RedisBloomProtocol.BloomFilterCommand> 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.BloomFilterCommandvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RedisBloomProtocol.BloomFilterCommand[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESERVE
public static final RedisBloomProtocol.BloomFilterCommand RESERVE
-
ADD
public static final RedisBloomProtocol.BloomFilterCommand ADD
-
MADD
public static final RedisBloomProtocol.BloomFilterCommand MADD
-
EXISTS
public static final RedisBloomProtocol.BloomFilterCommand EXISTS
-
MEXISTS
public static final RedisBloomProtocol.BloomFilterCommand MEXISTS
-
INSERT
public static final RedisBloomProtocol.BloomFilterCommand INSERT
-
SCANDUMP
public static final RedisBloomProtocol.BloomFilterCommand SCANDUMP
-
LOADCHUNK
public static final RedisBloomProtocol.BloomFilterCommand LOADCHUNK
-
CARD
public static final RedisBloomProtocol.BloomFilterCommand CARD
-
INFO
public static final RedisBloomProtocol.BloomFilterCommand INFO
-
-
Method Detail
-
values
public static RedisBloomProtocol.BloomFilterCommand[] 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.BloomFilterCommand c : RedisBloomProtocol.BloomFilterCommand.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.BloomFilterCommand 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
-
-