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