public static enum Labels.VerticalAlign extends Enum<Labels.VerticalAlign>
| Enum Constant and Description |
|---|
BOTTOM
Align the data label on the bottom of the point
|
MIDDLE
Align the data label to the middle of the point
|
TOP
Align the data label to the top of the point
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Labels.VerticalAlign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Labels.VerticalAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Labels.VerticalAlign TOP
public static final Labels.VerticalAlign MIDDLE
public static final Labels.VerticalAlign BOTTOM
public static Labels.VerticalAlign[] values()
for (Labels.VerticalAlign c : Labels.VerticalAlign.values()) System.out.println(c);
public static Labels.VerticalAlign 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<Labels.VerticalAlign>Copyright © 2015. All Rights Reserved.