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