public static enum Component.Alignment extends java.lang.Enum<Component.Alignment>
| Enum Constant and Description |
|---|
BOTTOM_CENTER |
BOTTOM_LEFT |
BOTTOM_RIGHT |
MIDDLE_CENTER |
MIDDLE_LEFT |
MIDDLE_RIGHT |
TOP_CENTER |
TOP_LEFT |
TOP_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static Component.Alignment |
valueOf(java.lang.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_RIGHT
public static final Component.Alignment TOP_LEFT
public static final Component.Alignment TOP_CENTER
public static final Component.Alignment MIDDLE_RIGHT
public static final Component.Alignment MIDDLE_LEFT
public static final Component.Alignment MIDDLE_CENTER
public static final Component.Alignment BOTTOM_RIGHT
public static final Component.Alignment BOTTOM_LEFT
public static final Component.Alignment BOTTOM_CENTER
public static Component.Alignment[] values()
for (Component.Alignment c : Component.Alignment.values()) System.out.println(c);
public static Component.Alignment valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null