public static enum Axis.Axis2 extends Enum<Axis.Axis2>
| Modifier and Type | Field and Description |
|---|---|
String |
axis
string value
|
int |
value
integer value
|
| Modifier and Type | Method and Description |
|---|---|
static Axis.Axis2 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Axis.Axis2[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axis.Axis2 X
public static final Axis.Axis2 Y
public final String axis
public final int value
public static Axis.Axis2[] values()
for (Axis.Axis2 c : Axis.Axis2.values()) System.out.println(c);
public static Axis.Axis2 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.