public enum SearchPhase extends Enum<SearchPhase>
Represents the search phases.
Enum Constant and Description |
---|
AliasSubstitution
The alias substitution.
|
FuzzySearch
The fuzzy search.
|
HomophoneSearch
The homophone search.
|
KeyboardLayoutCorrection
The keyboard layout correction.
|
RegexMatching
The regex matching.
|
SpellingCorrection
The spelling correction.
|
SynonymSearch
The synonym search.
|
WildcardMatching
The wildcard matching.
|
WordFormsSearch
The word forms search.
|
Modifier and Type | Method and Description |
---|---|
static SearchPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchPhase AliasSubstitution
The alias substitution.
public static final SearchPhase KeyboardLayoutCorrection
The keyboard layout correction.
public static final SearchPhase SpellingCorrection
The spelling correction.
public static final SearchPhase HomophoneSearch
The homophone search.
public static final SearchPhase SynonymSearch
The synonym search.
public static final SearchPhase WordFormsSearch
The word forms search.
public static final SearchPhase FuzzySearch
The fuzzy search.
public static final SearchPhase WildcardMatching
The wildcard matching.
public static final SearchPhase RegexMatching
The regex matching.
public static SearchPhase[] values()
for (SearchPhase c : SearchPhase.values()) System.out.println(c);
public static SearchPhase 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