public enum FormFilterParameterType extends Enum<FormFilterParameterType>
| Enum Constant and Description |
|---|
BOOLEAN |
FIELD |
STEPREFERENCE |
TEXT |
TEXTAREA |
| Modifier and Type | Method and Description |
|---|---|
static FormFilterParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormFilterParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormFilterParameterType TEXT
public static final FormFilterParameterType TEXTAREA
public static final FormFilterParameterType BOOLEAN
public static final FormFilterParameterType STEPREFERENCE
public static final FormFilterParameterType FIELD
public static FormFilterParameterType[] values()
for (FormFilterParameterType c : FormFilterParameterType.values()) System.out.println(c);
public static FormFilterParameterType 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 © 2019. All rights reserved.