public enum AxisDimension extends Enum<AxisDimension>
Enum Constant and Description |
---|
COLOR_AXIS |
X_AXIS |
Y_AXIS |
Z_AXIS |
Modifier and Type | Method and Description |
---|---|
int |
getIndex() |
static AxisDimension |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisDimension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisDimension X_AXIS
public static final AxisDimension Y_AXIS
public static final AxisDimension Z_AXIS
public static final AxisDimension COLOR_AXIS
public static AxisDimension[] values()
for (AxisDimension c : AxisDimension.values()) System.out.println(c);
public static AxisDimension 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 getIndex()
Copyright © 2025. All rights reserved.