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