public enum RedisGraphCommand extends Enum<RedisGraphCommand> implements redis.clients.jedis.commands.ProtocolCommand
Modifier and Type | Method and Description |
---|---|
byte[] |
getRaw() |
static RedisGraphCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisGraphCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedisGraphCommand QUERY
public static final RedisGraphCommand DELETE
public static RedisGraphCommand[] values()
for (RedisGraphCommand c : RedisGraphCommand.values()) System.out.println(c);
public static RedisGraphCommand 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.ProtocolCommand
Copyright © 2020 RedisLabs. All rights reserved.