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