public static enum Component.Alignment extends Enum<Component.Alignment>
Enum Constant and Description |
---|
BOTTOM_LEFT |
BOTTOM_RIGHT |
BOTTON_CENTER |
CENTER |
FILL |
LEFT_CENTER |
RIGHT_CENTER |
TOP_CENTER |
TOP_LEFT |
TOP_RIGHT |
Modifier and Type | Method and Description |
---|---|
static Component.Alignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Component.Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Component.Alignment TOP_CENTER
public static final Component.Alignment BOTTON_CENTER
public static final Component.Alignment LEFT_CENTER
public static final Component.Alignment RIGHT_CENTER
public static final Component.Alignment CENTER
public static final Component.Alignment FILL
public static final Component.Alignment TOP_LEFT
public static final Component.Alignment TOP_RIGHT
public static final Component.Alignment BOTTOM_LEFT
public static final Component.Alignment BOTTOM_RIGHT
public static Component.Alignment[] values()
for (Component.Alignment c : Component.Alignment.values()) System.out.println(c);
public static Component.Alignment 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 © 2015. All Rights Reserved.