public enum FormTypes extends Enum<FormTypes>
| Enum Constant and Description |
|---|
CASCADE |
CATEGORIZED_CASCADE |
CUSTOM |
CUSTOM_TABBED |
STEPPED |
TABBED |
| Modifier and Type | Method and Description |
|---|---|
static FormTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormTypes CASCADE
public static final FormTypes CATEGORIZED_CASCADE
public static final FormTypes TABBED
public static final FormTypes STEPPED
public static final FormTypes CUSTOM_TABBED
public static final FormTypes CUSTOM
public static FormTypes[] values()
for (FormTypes c : FormTypes.values()) System.out.println(c);
public static FormTypes 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.