public enum AxisHorizontalLocation extends Enum<AxisHorizontalLocation>
Enum Constant and Description |
---|
LEFT
axis (rendered vertically) should be located to the left of the plot area.
|
RIGHT
axis (rendered vertically) should be located to the right of the plot area.
|
Modifier and Type | Method and Description |
---|---|
static AxisHorizontalLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisHorizontalLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisHorizontalLocation LEFT
public static final AxisHorizontalLocation RIGHT
public static AxisHorizontalLocation[] values()
for (AxisHorizontalLocation c : AxisHorizontalLocation.values()) System.out.println(c);
public static AxisHorizontalLocation 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