public enum FormLayoutType extends Enum<FormLayoutType>
Enum Constant and Description |
---|
FLOW
Flow Layout: Flow Layout
|
GRID
Grid Layout: Grid Layout
|
Modifier and Type | Method and Description |
---|---|
static FormLayoutType |
valueOf(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 FLOW
public static final FormLayoutType GRID
public static FormLayoutType[] values()
for (FormLayoutType c : FormLayoutType.values()) System.out.println(c);
public static FormLayoutType 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 © 2016. All rights reserved.