Modifier and Type | Method and Description |
---|---|
static Heading |
random() |
Heading |
reverse() |
Heading |
reverseHorizontal() |
Heading |
reverseVertical() |
java.lang.String |
toString() |
static Heading |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Heading[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Heading NORTH
public static final Heading SOUTH
public static final Heading EAST
public static final Heading WEST
public static final Heading NONE
public static Heading[] values()
for (Heading c : Heading.values()) System.out.println(c);
public static Heading 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 nullpublic Heading reverse()
public Heading reverseHorizontal()
public Heading reverseVertical()
public static Heading random()
public java.lang.String toString()
toString
in class java.lang.Enum<Heading>