public static enum CharFilter.Result extends java.lang.Enum<CharFilter.Result>
| Enum Constant and Description |
|---|
ADD_TO_PREFIX |
HIDE_LOOKUP |
SELECT_ITEM_AND_FINISH_LOOKUP |
| Modifier and Type | Method and Description |
|---|---|
static CharFilter.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CharFilter.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharFilter.Result ADD_TO_PREFIX
public static final CharFilter.Result SELECT_ITEM_AND_FINISH_LOOKUP
public static final CharFilter.Result HIDE_LOOKUP
public static CharFilter.Result[] values()
for (CharFilter.Result c : CharFilter.Result.values()) System.out.println(c);
public static CharFilter.Result valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null