public enum SupportedLang extends java.lang.Enum<SupportedLang>
Enum Constant and Description |
---|
DE |
EN_AU |
EN_CA |
EN_GB |
EN_IN |
EN_US |
ES |
FR |
HI_IN |
IT |
JA |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static SupportedLang |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SupportedLang[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedLang EN_US
public static final SupportedLang EN_GB
public static final SupportedLang EN_IN
public static final SupportedLang EN_AU
public static final SupportedLang EN_CA
public static final SupportedLang DE
public static final SupportedLang ES
public static final SupportedLang HI_IN
public static final SupportedLang IT
public static final SupportedLang JA
public static final SupportedLang FR
public static SupportedLang[] values()
for (SupportedLang c : SupportedLang.values()) System.out.println(c);
public static SupportedLang 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<SupportedLang>