public enum Command extends Enum<Command> implements redis.clients.jedis.commands.ProtocolCommand
| Enum Constant and Description |
|---|
ADD |
CREATE |
CREATE_RULE |
DECRBY |
DELETE_RULE |
INCRBY |
INFO |
MADD |
MRANGE |
RANGE |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getRaw() |
static Command |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command CREATE
public static final Command RANGE
public static final Command MRANGE
public static final Command CREATE_RULE
public static final Command DELETE_RULE
public static final Command ADD
public static final Command MADD
public static final Command INCRBY
public static final Command DECRBY
public static final Command INFO
public static Command[] values()
for (Command c : Command.values()) System.out.println(c);
public static Command valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic byte[] getRaw()
getRaw in interface redis.clients.jedis.commands.ProtocolCommandCopyright © 2019. All rights reserved.