public enum FormLayoutType extends java.lang.Enum<FormLayoutType> implements ValueEnum
| Enum Constant and Description |
|---|
ABSOLUTE Allow absolute positioning of every form item. |
TABLE Use a tabular layout similar to HTML tables, but with much more powerful control over sizing, item visibility and reflow, overflow handling, etc. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static FormLayoutType | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static FormLayoutType[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final FormLayoutType TABLE
public static final FormLayoutType ABSOLUTE
Allow absolute positioning of every form item. This provides maximum flexibility in placement, with the following limitations:
.public static FormLayoutType[] values()
for (FormLayoutType c : FormLayoutType.values()) System.out.println(c);
public static FormLayoutType 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