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