public static enum CompoundIcon.Axis extends java.lang.Enum<CompoundIcon.Axis>
| Enum Constant and Description |
|---|
X_AXIS
The x axis.
|
Y_AXIS
The y axis.
|
Z_AXIS
The z axis.
|
| Modifier and Type | Method and Description |
|---|---|
static CompoundIcon.Axis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompoundIcon.Axis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompoundIcon.Axis X_AXIS
public static final CompoundIcon.Axis Y_AXIS
public static final CompoundIcon.Axis Z_AXIS
public static CompoundIcon.Axis[] values()
for (CompoundIcon.Axis c : CompoundIcon.Axis.values()) System.out.println(c);
public static CompoundIcon.Axis valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null