public enum LabelVertPosition extends Enum<LabelVertPosition>
| Enum Constant and Description |
|---|
BOTTOM
Indicates that the label should be top-aligned with the label
location.
|
CENTER
Indicates that the label should be vertically centered with respect to
the label location.
|
TOP
Indicates that the label should be bottom-aligned with the label
location.
|
| Modifier and Type | Method and Description |
|---|---|
static LabelVertPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LabelVertPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelVertPosition TOP
public static final LabelVertPosition BOTTOM
public static final LabelVertPosition CENTER
public static LabelVertPosition[] values()
for (LabelVertPosition c : LabelVertPosition.values()) System.out.println(c);
public static LabelVertPosition 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 null