public enum AxisLastLabelVisibility extends Enum<AxisLastLabelVisibility>
Enum Constant and Description |
---|
CLIP
The last label is displayed but no space if reserved so that it is fully visible.
|
HIDDEN
The last label is not displayed.
|
VISIBLE
The desired space is reserved so that the label is fully visible.
|
Modifier and Type | Method and Description |
---|---|
static AxisLastLabelVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisLastLabelVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisLastLabelVisibility VISIBLE
public static final AxisLastLabelVisibility HIDDEN
public static final AxisLastLabelVisibility CLIP
public static AxisLastLabelVisibility[] values()
for (AxisLastLabelVisibility c : AxisLastLabelVisibility.values()) System.out.println(c);
public static AxisLastLabelVisibility 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