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