public enum LabelPlacement extends java.lang.Enum<LabelPlacement>
Enum Constant and Description |
---|
Auto
Automatic placement (default)
|
Axis
Places on the axis
|
Bottom
Places at the bottom
|
BottomLeft
Places at the bottom left
|
BottomRight
Places at the bottom right
|
Left
Places on the left
|
Right
Places on the right
|
Top
Places at the top
|
TopLeft
Places at the top left
|
TopRight
Places at the top right
|
Modifier and Type | Method and Description |
---|---|
static LabelPlacement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LabelPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelPlacement Right
public static final LabelPlacement TopRight
public static final LabelPlacement BottomRight
public static final LabelPlacement Bottom
public static final LabelPlacement Left
public static final LabelPlacement TopLeft
public static final LabelPlacement BottomLeft
public static final LabelPlacement Top
public static final LabelPlacement Axis
public static final LabelPlacement Auto
public static LabelPlacement[] values()
for (LabelPlacement c : LabelPlacement.values()) System.out.println(c);
public static LabelPlacement valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null