public enum AutocompleteMode extends Enum<AutocompleteMode>
Enum Constant and Description |
---|
ajax |
cachedAjax |
client |
lazyClient |
Modifier and Type | Field and Description |
---|---|
static AutocompleteMode |
DEFAULT |
Modifier and Type | Method and Description |
---|---|
static AutocompleteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutocompleteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutocompleteMode client
public static final AutocompleteMode lazyClient
public static final AutocompleteMode ajax
public static final AutocompleteMode cachedAjax
public static final AutocompleteMode DEFAULT
public static AutocompleteMode[] values()
for (AutocompleteMode c : AutocompleteMode.values()) System.out.println(c);
public static AutocompleteMode 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 © 2015 JBoss by Red Hat. All Rights Reserved.