public enum DictionaryType extends Enum<DictionaryType>
| Enum Constant and Description |
|---|
AliasDictionary
The alias dictionary.
|
Alphabet
The alphabet.
|
CharacterReplacementDictionary
The character replacement dictionary.
|
HomophoneDictionary
The homophone dictionary.
|
PasswordDictionary
The password dictionary.
|
SpellingCorrector
The spelling corrector.
|
StopWordDictionary
The stop word dictionary.
|
SynonymDictionary
The synonym dictionary.
|
| Modifier and Type | Method and Description |
|---|---|
static DictionaryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DictionaryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DictionaryType AliasDictionary
public static final DictionaryType Alphabet
public static final DictionaryType CharacterReplacementDictionary
public static final DictionaryType HomophoneDictionary
public static final DictionaryType PasswordDictionary
public static final DictionaryType SpellingCorrector
public static final DictionaryType StopWordDictionary
public static final DictionaryType SynonymDictionary
public static DictionaryType 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 nullpublic static DictionaryType[] values()
for (DictionaryType c : DictionaryType.values()) System.out.println(c);
Copyright © 2026. All rights reserved.