public enum Position extends Enum<Position>
Enum Constant and Description |
---|
border
The labels are located on border.
|
defaults
In labels plugin is named 'default', inside the chart.
|
outside
The labels are located outisde of the chart.
|
Modifier and Type | Method and Description |
---|---|
static Position |
getPositionByValue(String value)
Returns the position enumeration item by its value.
|
String |
getValue()
Returns the real value to set to configure LABELS plugin.
|
static Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Position defaults
public static final Position border
public static final Position outside
public static Position[] values()
for (Position c : Position.values()) System.out.println(c);
public static Position 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 String getValue()