public enum Language extends Enum<Language>
| Enum Constant and Description |
|---|
DEUTSCHE |
ENGLISH_US |
FRENCH |
ITALIAN |
JAPANESE |
SPANISH |
| Modifier and Type | Method and Description |
|---|---|
static Language |
getLanguageFromValue(String value)
Returns the Language from string value.
|
String |
getLanguagePropertyFileName() |
String |
getLanguageValue() |
static Language |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Language[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Language ENGLISH_US
public static final Language FRENCH
public static final Language DEUTSCHE
public static final Language SPANISH
public static final Language ITALIAN
public static final Language JAPANESE
public static Language[] values()
for (Language c : Language.values()) System.out.println(c);
public static Language 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 String getLanguageValue()
public String getLanguagePropertyFileName()
Copyright © 2013. All Rights Reserved.