public enum AxisPlaneDrawLabelsMode extends java.lang.Enum<AxisPlaneDrawLabelsMode>
Enum Constant and Description |
---|
AxisPlaneDrawLabelsBoth
Axis labels are drawn on both sides of the axis cube.
|
AxisPlaneDrawLabelsHidden
Hides the axis labels for this plane, for example, when applied to the XY axis plane, the labels drawn by this plane will be hidden.
|
AxisPlaneDrawLabelsLocalX
Draws the labels on one side (the local X) of the plane
|
AxisPlaneDrawLabelsLocalY
Draws the labels on the other side (the local Y) of the plane
|
Modifier and Type | Method and Description |
---|---|
static AxisPlaneDrawLabelsMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxisPlaneDrawLabelsMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisPlaneDrawLabelsMode AxisPlaneDrawLabelsBoth
public static final AxisPlaneDrawLabelsMode AxisPlaneDrawLabelsHidden
public static final AxisPlaneDrawLabelsMode AxisPlaneDrawLabelsLocalX
public static final AxisPlaneDrawLabelsMode AxisPlaneDrawLabelsLocalY
public static AxisPlaneDrawLabelsMode[] values()
for (AxisPlaneDrawLabelsMode c : AxisPlaneDrawLabelsMode.values()) System.out.println(c);
public static AxisPlaneDrawLabelsMode 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