public enum AxisPlotMode extends Enum<AxisPlotMode>
Enum Constant and Description |
---|
BETWEEN_TICKS
points are plotted in the middle of the range, defined between each two ticks.
|
ON_TICKS
points are plotted over each tick.
|
ON_TICKS_PADDED
points are plotted over each tick with half a step padding applied on both ends of the axis.
|
Modifier and Type | Method and Description |
---|---|
static AxisPlotMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisPlotMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisPlotMode BETWEEN_TICKS
public static final AxisPlotMode ON_TICKS
public static final AxisPlotMode ON_TICKS_PADDED
public static AxisPlotMode[] values()
for (AxisPlotMode c : AxisPlotMode.values()) System.out.println(c);
public static AxisPlotMode 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 null