public enum CartesianElement extends Enum<CartesianElement> implements Enumeration
Cartesian.| Enum Constant and Description |
|---|
MAGNITUDE
Magnitude.
|
X
X.
|
Y
Y.
|
Z
Z.
|
| Modifier and Type | Method and Description |
|---|---|
static CartesianElement |
getDefault()
Get the enum constant that is considered to be the default.
|
static CartesianElement |
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 CartesianElement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CartesianElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CartesianElement X
public static final CartesianElement Y
public static final CartesianElement Z
public static final CartesianElement MAGNITUDE
public static CartesianElement[] values()
for (CartesianElement c : CartesianElement.values()) System.out.println(c);
public static CartesianElement 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 CartesianElement getFromValue(int value)
value - a numeric value.@Nonnull public static CartesianElement getDefault()