public static enum GraphConstants.AxisScaledFromBaseline extends java.lang.Enum<GraphConstants.AxisScaledFromBaseline>
ON
: indicates the axis should be scaled to include the baselineOFF
: indicates the axis should not be scaled to include the baseline. This
will scale the axis according to the minimum and maximum values of the
data.Modifier and Type | Method and Description |
---|---|
static GraphConstants.AxisScaledFromBaseline |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphConstants.AxisScaledFromBaseline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphConstants.AxisScaledFromBaseline ON
public static final GraphConstants.AxisScaledFromBaseline OFF
public static GraphConstants.AxisScaledFromBaseline[] values()
for (GraphConstants.AxisScaledFromBaseline c : GraphConstants.AxisScaledFromBaseline.values()) System.out.println(c);
public static GraphConstants.AxisScaledFromBaseline 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