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