public enum FormType extends Enum<FormType> implements Style
Form.| Enum Constant and Description |
|---|
HORIZONTAL |
INLINE |
SEARCH |
VERTICAL |
| Modifier and Type | Method and Description |
|---|---|
String |
get()
Gets the CSS class name (or a part thereof) associated with this
constant.
|
static FormType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormType VERTICAL
public static final FormType INLINE
public static final FormType SEARCH
public static final FormType HORIZONTAL
public static FormType[] values()
for (FormType c : FormType.values()) System.out.println(c);
public static FormType 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.