| Enum Constant and Description |
|---|
X
The "X" axis or abscissa.
|
Y
The "Y" axis or ordinate.
|
Z
The "Z" axis or applicate.
|
| Modifier and Type | Method and Description |
|---|---|
static Axis3D |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Axis3D[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axis3D X
public static final Axis3D Y
public static final Axis3D Z
public static Axis3D[] values()
for (Axis3D c : Axis3D.values()) System.out.println(c);
public static Axis3D 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