public enum PanelAlign extends java.lang.Enum<PanelAlign>
| Enum Constant and Description |
|---|
BOTTOM
Valid for HorizontalPanel, TablePanel(used as bottom-center)
|
BOTTOM_LEFT
Valid for TablePanel
|
BOTTOM_RIGHT
Valid for TablePanel
|
CENTER
Valid for VerticalPanel and HorizontalPanel, TablePanel, same as MIDDLE
|
LEFT
Valid for VerticalPanel, TablePanel(used as middle-left)
|
MIDDLE
Valid for VerticalPanel and HorizontalPanel, TablePanel
|
MIDDLE_LEFT
Valid for TablePanel
|
MIDDLE_RIGHT
Valid for TablePanel
|
RIGHT
Valid for VerticalPanel, TablePanel(used as middle-right)
|
TOP
Valid for HorizontalPanel, TablePanel(used as top-center)
|
TOP_LEFT
Valid for TablePanel
|
TOP_RIGHT
Valid for TablePanel
|
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
propertyName |
| Modifier and Type | Method and Description |
|---|---|
static PanelAlign |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PanelAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PanelAlign TOP
public static final PanelAlign LEFT
public static final PanelAlign MIDDLE
public static final PanelAlign CENTER
public static final PanelAlign RIGHT
public static final PanelAlign BOTTOM
public static final PanelAlign TOP_LEFT
public static final PanelAlign TOP_RIGHT
public static final PanelAlign MIDDLE_LEFT
public static final PanelAlign MIDDLE_RIGHT
public static final PanelAlign BOTTOM_LEFT
public static final PanelAlign BOTTOM_RIGHT
public static PanelAlign[] values()
for (PanelAlign c : PanelAlign.values()) System.out.println(c);
public static PanelAlign 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