public enum AxisIndicator extends Enum<AxisIndicator> implements Enumeration
ElementaryRotation| Enum Constant and Description | 
|---|
FIRST
The first axis (commonly the x-axis). 
 | 
SECOND
The second axis (commonly the y-axis). 
 | 
THIRD
The third axis (commonly the z-axis). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static AxisIndicator | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static AxisIndicator | 
getFromValue(int value)
Get the enum constant that is associated with the given numeric value. 
 | 
int | 
getValue()
Get the numeric value associated with this enum constant. 
 | 
static AxisIndicator | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static AxisIndicator[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final AxisIndicator FIRST
public static final AxisIndicator SECOND
public static final AxisIndicator THIRD
public static AxisIndicator[] values()
for (AxisIndicator c : AxisIndicator.values()) System.out.println(c);
public static AxisIndicator 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 nullpublic int getValue()
getValue in interface Enumeration@Nonnull public static AxisIndicator getFromValue(int value)
value - a numeric value.@Nullable public static AxisIndicator getDefault()