public enum CardOrientation extends java.lang.Enum<CardOrientation>
Enum Constant and Description |
---|
EAST
Orientation from left to right.
|
NORTH
Orientation from bottom to top.
|
SOUTH
Orientation from top to bottom.
|
WEST
Orientation from right to left.
|
Modifier and Type | Method and Description |
---|---|
static CardOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardOrientation NORTH
public static final CardOrientation EAST
public static final CardOrientation SOUTH
public static final CardOrientation WEST
public static CardOrientation[] values()
for (CardOrientation c : CardOrientation.values()) System.out.println(c);
public static CardOrientation 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