private static enum RedisDecoder.State extends java.lang.Enum<RedisDecoder.State>
Enum Constant and Description |
---|
DECODE_BULK_STRING_CONTENT |
DECODE_BULK_STRING_EOL |
DECODE_INLINE |
DECODE_LENGTH |
DECODE_TYPE |
Modifier and Type | Method and Description |
---|---|
static RedisDecoder.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RedisDecoder.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedisDecoder.State DECODE_TYPE
public static final RedisDecoder.State DECODE_INLINE
public static final RedisDecoder.State DECODE_LENGTH
public static final RedisDecoder.State DECODE_BULK_STRING_EOL
public static final RedisDecoder.State DECODE_BULK_STRING_CONTENT
public static RedisDecoder.State[] values()
for (RedisDecoder.State c : RedisDecoder.State.values()) System.out.println(c);
public static RedisDecoder.State valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null