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