model
Enum OrientationSystem.Card8
java.lang.Object
java.lang.Enum<OrientationSystem.Card8>
model.OrientationSystem.Card8
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<OrientationSystem.Card8>
- Enclosing class:
- OrientationSystem
public static enum OrientationSystem.Card8
- extends java.lang.Enum<OrientationSystem.Card8>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
NORTH8
public static final OrientationSystem.Card8 NORTH8
NORTHEAST8
public static final OrientationSystem.Card8 NORTHEAST8
EAST8
public static final OrientationSystem.Card8 EAST8
SOUTHEAST8
public static final OrientationSystem.Card8 SOUTHEAST8
SOUTH8
public static final OrientationSystem.Card8 SOUTH8
SOUTHWEST8
public static final OrientationSystem.Card8 SOUTHWEST8
WEST8
public static final OrientationSystem.Card8 WEST8
NORTHWEST8
public static final OrientationSystem.Card8 NORTHWEST8
values
public static final OrientationSystem.Card8[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(OrientationSystem.Card8 c : OrientationSystem.Card8.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static OrientationSystem.Card8 valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name