public static enum Legend.LegendAlignment extends java.lang.Enum<Legend.LegendAlignment>
Enum Constant and Description |
---|
ALIGN_LEFT |
ALIGN_RIGHT |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Legend.LegendAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Legend.LegendAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Legend.LegendAlignment ALIGN_LEFT
public static final Legend.LegendAlignment ALIGN_RIGHT
public static Legend.LegendAlignment[] values()
for (Legend.LegendAlignment c : Legend.LegendAlignment.values()) System.out.println(c);
public static Legend.LegendAlignment 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 nullpublic int getValue()