public static enum LanguageInfo.LocaleType extends java.lang.Enum<LanguageInfo.LocaleType>
Enum Constant and Description |
---|
BASELANGUAGE
The base language (i.e.
|
DEFAULT
The current default language
|
DEFAULTNOTENGLISH
The current default language, but not english
|
ENGLISH
The standard english texts
|
Modifier and Type | Method and Description |
---|---|
static LanguageInfo.LocaleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LanguageInfo.LocaleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LanguageInfo.LocaleType DEFAULT
public static final LanguageInfo.LocaleType DEFAULTNOTENGLISH
public static final LanguageInfo.LocaleType BASELANGUAGE
public static final LanguageInfo.LocaleType ENGLISH
public static LanguageInfo.LocaleType[] values()
for (LanguageInfo.LocaleType c : LanguageInfo.LocaleType.values()) System.out.println(c);
public static LanguageInfo.LocaleType 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