public static enum AxisTitle.Align extends Enum<AxisTitle.Align>
AxisTitle.setAlign(AxisTitle.Align) method.| Enum Constant and Description |
|---|
HIGH
Align the title to the top (for a y-axis) or to the right (for an x-axis)
|
LOW
Align the title to the bottom (for a y-axis) or to the left (for an x-axis)
|
MIDDLE
Align the title to the middle (for a y-axis) or to the center (for an x-axis)
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AxisTitle.Align |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisTitle.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisTitle.Align LOW
public static final AxisTitle.Align MIDDLE
public static final AxisTitle.Align HIGH
public static AxisTitle.Align[] values()
for (AxisTitle.Align c : AxisTitle.Align.values()) System.out.println(c);
public static AxisTitle.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<AxisTitle.Align>Copyright © 2015. All Rights Reserved.