static enum RedisStateMachine.State.Type extends java.lang.Enum<RedisStateMachine.State.Type>
| Enum Constant and Description |
|---|
BULK |
BYTES |
ERROR |
INTEGER |
MULTI |
SINGLE |
| Modifier and Type | Method and Description |
|---|---|
static RedisStateMachine.State.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RedisStateMachine.State.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedisStateMachine.State.Type SINGLE
public static final RedisStateMachine.State.Type ERROR
public static final RedisStateMachine.State.Type INTEGER
public static final RedisStateMachine.State.Type BULK
public static final RedisStateMachine.State.Type MULTI
public static final RedisStateMachine.State.Type BYTES
public static RedisStateMachine.State.Type[] values()
for (RedisStateMachine.State.Type c : RedisStateMachine.State.Type.values()) System.out.println(c);
public static RedisStateMachine.State.Type 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