public static enum Legend.Align extends Enum<Legend.Align>
Legend.setAlign(Legend.Align) method.| Enum Constant and Description |
|---|
CENTER
Center the legend
|
LEFT
Left align the legend
|
RIGHT
Right align the legend
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Legend.Align |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Legend.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Legend.Align LEFT
public static final Legend.Align CENTER
public static final Legend.Align RIGHT
public static Legend.Align[] values()
for (Legend.Align c : Legend.Align.values()) System.out.println(c);
public static Legend.Align 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 toString()
toString in class Enum<Legend.Align>Copyright © 2015. All Rights Reserved.