public static enum Axis.Axis3 extends Enum<Axis.Axis3>
| Modifier and Type | Field and Description |
|---|---|
String |
axis
string value
|
int |
value
int value
|
| Modifier and Type | Method and Description |
|---|---|
static Axis.Axis3 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Axis.Axis3[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axis.Axis3 X
public static final Axis.Axis3 Y
public static final Axis.Axis3 Z
public final String axis
public final int value
public static Axis.Axis3[] values()
for (Axis.Axis3 c : Axis.Axis3.values()) System.out.println(c);
public static Axis.Axis3 valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 1994–2024 Peter Murray-Rust. All rights reserved.