public enum AxisPlotDirection extends Enum<AxisPlotDirection>
Enum Constant and Description |
---|
HORIZONTAL
Horizontal axis.
|
VERTICAL
Vertical axis.
|
Modifier and Type | Method and Description |
---|---|
static AxisPlotDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisPlotDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisPlotDirection VERTICAL
public static final AxisPlotDirection HORIZONTAL
public static AxisPlotDirection[] values()
for (AxisPlotDirection c : AxisPlotDirection.values()) System.out.println(c);
public static AxisPlotDirection 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