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