public static enum Label.Align extends Enum<Label.Align>
| Modifier and Type | Method and Description |
|---|---|
static Label.Align |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Label.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Label.Align LEFT
public static final Label.Align RIGHT
public static Label.Align[] values()
for (Label.Align c : Label.Align.values()) System.out.println(c);
public static Label.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 nullCopyright © 2017. All rights reserved.