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