public static enum Languages.Language extends java.lang.Enum<Languages.Language>
Enum Constant and Description |
---|
Arabic |
Chinese |
English |
French |
German |
Hebrew |
Spanish |
Unknown |
Modifier and Type | Method and Description |
---|---|
static Languages.Language |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Languages.Language[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Languages.Language Arabic
public static final Languages.Language Chinese
public static final Languages.Language English
public static final Languages.Language German
public static final Languages.Language French
public static final Languages.Language Hebrew
public static final Languages.Language Spanish
public static final Languages.Language Unknown
public static Languages.Language[] values()
for (Languages.Language c : Languages.Language.values()) System.out.println(c);
public static Languages.Language 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