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