public enum SpellCheckLanguage extends Enum<SpellCheckLanguage>
Enum Constant and Description |
---|
de
German dictionary
|
en
English dictionary
|
es
Spanish dictionary
|
fr
French dictionary
|
it
Italian dictionary
|
Modifier and Type | Method and Description |
---|---|
static SpellCheckLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpellCheckLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpellCheckLanguage en
public static final SpellCheckLanguage de
public static final SpellCheckLanguage es
public static final SpellCheckLanguage fr
public static final SpellCheckLanguage it
public static SpellCheckLanguage[] values()
for (SpellCheckLanguage c : SpellCheckLanguage.values()) System.out.println(c);
public static SpellCheckLanguage 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 © 2021 Aspose. All rights reserved.