Package redis.clients.jedis.bloom
Enum RedisBloomProtocol.CuckooFilterCommand
- java.lang.Object
-
- java.lang.Enum<RedisBloomProtocol.CuckooFilterCommand>
-
- redis.clients.jedis.bloom.RedisBloomProtocol.CuckooFilterCommand
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RedisBloomProtocol.CuckooFilterCommand>,Rawable,ProtocolCommand
- Enclosing class:
- RedisBloomProtocol
public static enum RedisBloomProtocol.CuckooFilterCommand extends java.lang.Enum<RedisBloomProtocol.CuckooFilterCommand> 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.CuckooFilterCommandvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RedisBloomProtocol.CuckooFilterCommand[]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.CuckooFilterCommand RESERVE
-
ADD
public static final RedisBloomProtocol.CuckooFilterCommand ADD
-
ADDNX
public static final RedisBloomProtocol.CuckooFilterCommand ADDNX
-
INSERT
public static final RedisBloomProtocol.CuckooFilterCommand INSERT
-
INSERTNX
public static final RedisBloomProtocol.CuckooFilterCommand INSERTNX
-
EXISTS
public static final RedisBloomProtocol.CuckooFilterCommand EXISTS
-
MEXISTS
public static final RedisBloomProtocol.CuckooFilterCommand MEXISTS
-
DEL
public static final RedisBloomProtocol.CuckooFilterCommand DEL
-
COUNT
public static final RedisBloomProtocol.CuckooFilterCommand COUNT
-
SCANDUMP
public static final RedisBloomProtocol.CuckooFilterCommand SCANDUMP
-
LOADCHUNK
public static final RedisBloomProtocol.CuckooFilterCommand LOADCHUNK
-
INFO
public static final RedisBloomProtocol.CuckooFilterCommand INFO
-
-
Method Detail
-
values
public static RedisBloomProtocol.CuckooFilterCommand[] 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.CuckooFilterCommand c : RedisBloomProtocol.CuckooFilterCommand.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.CuckooFilterCommand 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
-
-