Enum Constant and Description |
---|
CN |
CUSTOM |
DE |
EN |
FI |
FR |
JA |
PT_BR |
TR |
Modifier and Type | Method and Description |
---|---|
static LangCode |
fromString(java.lang.String code) |
java.lang.String |
getAuthors() |
java.lang.String |
getFileName() |
java.lang.String |
getName() |
static LangCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LangCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LangCode CUSTOM
public static final LangCode EN
public static final LangCode CN
public static final LangCode DE
public static final LangCode FI
public static final LangCode FR
public static final LangCode JA
public static final LangCode TR
public static final LangCode PT_BR
public static LangCode[] values()
for (LangCode c : LangCode.values()) System.out.println(c);
public static LangCode 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 static LangCode fromString(java.lang.String code)
public java.lang.String getName()
public java.lang.String getAuthors()
public java.lang.String getFileName()