public enum EulerSequenceIndicator extends Enum<EulerSequenceIndicator> implements Enumeration
EulerSequence
Enum Constant and Description |
---|
EULER121
The first axes, followed by the second and then first axes.
|
EULER123
The first axes, followed by the second and then third axes.
|
EULER131
The first axes, followed by the third and then first axes.
|
EULER132
The first axes, followed by the third and then second axes.
|
EULER212
The second axes, followed by the first and then second axes.
|
EULER213
The second axes, followed by the first and then third axes.
|
EULER231
The second axes, followed by the third and then first axes.
|
EULER232
The second axes, followed by the third and then second axes.
|
EULER312
The third axes, followed by the first and then second axes.
|
EULER313
The third axes, followed by the first and then third axes.
|
EULER321
The third axes, followed by the second and then first axes.
|
EULER323
The third axes, followed by the second and then third axes.
|
Modifier and Type | Method and Description |
---|---|
static EulerSequenceIndicator |
getDefault()
Get the enum constant that is considered to be the default.
|
static EulerSequenceIndicator |
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 EulerSequenceIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EulerSequenceIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EulerSequenceIndicator EULER123
public static final EulerSequenceIndicator EULER321
public static final EulerSequenceIndicator EULER231
public static final EulerSequenceIndicator EULER132
public static final EulerSequenceIndicator EULER312
public static final EulerSequenceIndicator EULER213
public static final EulerSequenceIndicator EULER212
public static final EulerSequenceIndicator EULER313
public static final EulerSequenceIndicator EULER121
public static final EulerSequenceIndicator EULER323
public static final EulerSequenceIndicator EULER131
public static final EulerSequenceIndicator EULER232
public static EulerSequenceIndicator[] values()
for (EulerSequenceIndicator c : EulerSequenceIndicator.values()) System.out.println(c);
public static EulerSequenceIndicator 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 EulerSequenceIndicator getFromValue(int value)
value
- a numeric value.@Nullable public static EulerSequenceIndicator getDefault()