| Enum Constant and Description |
|---|
BELARUSIAN |
ENGLISH |
FINNISH |
GERMAN |
ITALIAN |
RUSSIAN |
SPANISH |
UKRAINIAN |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static Lang |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Lang[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="ru") public static final Lang RUSSIAN
@SerializedName(value="ua") public static final Lang UKRAINIAN
@SerializedName(value="be") public static final Lang BELARUSIAN
@SerializedName(value="en") public static final Lang ENGLISH
@SerializedName(value="es") public static final Lang SPANISH
@SerializedName(value="fi") public static final Lang FINNISH
@SerializedName(value="de") public static final Lang GERMAN
@SerializedName(value="it") public static final Lang ITALIAN
public static Lang[] values()
for (Lang c : Lang.values()) System.out.println(c);
public static Lang 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<Lang>