public enum AxisTickLabelPosition extends Enum<AxisTickLabelPosition>
Modifier and Type | Method and Description |
---|---|
static AxisTickLabelPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisTickLabelPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisTickLabelPosition LOW
public static final AxisTickLabelPosition NONE
public static final AxisTickLabelPosition HIGH
public static final AxisTickLabelPosition NEXT_TO
public static AxisTickLabelPosition[] values()
for (AxisTickLabelPosition c : AxisTickLabelPosition.values()) System.out.println(c);
public static AxisTickLabelPosition 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 nullCopyright © 2020. All rights reserved.