public enum AxisLabelsPosition extends Enum<AxisLabelsPosition>
Enum Constant and Description |
---|
HIGH
Axis labels are at the high end of the perpendicular axis.
|
LOW
Axis labels are at the low end of the perpendicular axis.
|
NEXT_TO_AXIS
Axis labels are next to the axis.
|
NONE
Axis labels are not drawn.
|
Modifier and Type | Method and Description |
---|---|
static AxisLabelsPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisLabelsPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisLabelsPosition HIGH
public static final AxisLabelsPosition LOW
public static final AxisLabelsPosition NEXT_TO_AXIS
public static final AxisLabelsPosition NONE
public static AxisLabelsPosition 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 nullpublic static AxisLabelsPosition[] values()
for (AxisLabelsPosition c : AxisLabelsPosition.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.