public static enum RedisCommandInfo.ResultType extends Enum<RedisCommandInfo.ResultType>
Enum Constant and Description |
---|
BULK |
INT |
MULTIBULK |
REDIS_ERROR |
STRING |
Modifier and Type | Method and Description |
---|---|
static RedisCommandInfo.ResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisCommandInfo.ResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedisCommandInfo.ResultType STRING
public static final RedisCommandInfo.ResultType INT
public static final RedisCommandInfo.ResultType BULK
public static final RedisCommandInfo.ResultType MULTIBULK
public static final RedisCommandInfo.ResultType REDIS_ERROR
public static RedisCommandInfo.ResultType[] values()
for (RedisCommandInfo.ResultType c : RedisCommandInfo.ResultType.values()) System.out.println(c);
public static RedisCommandInfo.ResultType 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 nullCopyright © 2013- Suresh Mahalingam. All Rights Reserved.