public enum ValueAxis3DType extends java.lang.Enum<ValueAxis3DType>
ValueAxis3D can be
used in several different plot dimensions.| Enum Constant and Description |
|---|
VALUE
A value axis in a
CategoryPlot3D. |
X
An x-axis in an
XYZPlot. |
Y
A y-axis in an
XYZPlot. |
Z
A z-axis in an
XYZPlot. |
| Modifier and Type | Method and Description |
|---|---|
static ValueAxis3DType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValueAxis3DType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueAxis3DType VALUE
CategoryPlot3D.public static final ValueAxis3DType X
XYZPlot.public static final ValueAxis3DType Y
XYZPlot.public static final ValueAxis3DType Z
XYZPlot.public static ValueAxis3DType[] values()
for (ValueAxis3DType c : ValueAxis3DType.values()) System.out.println(c);
public static ValueAxis3DType 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