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