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