public static enum Language.L extends Enum<Language.L>
| Enum Constant and Description |
|---|
cat |
chi |
cze |
eng |
fre |
ger |
jap |
nul |
spa |
swe |
| Modifier and Type | Method and Description |
|---|---|
static Language.L |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Language.L[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Language.L cat
public static final Language.L chi
public static final Language.L cze
public static final Language.L eng
public static final Language.L ger
public static final Language.L jap
public static final Language.L spa
public static final Language.L swe
public static final Language.L fre
public static final Language.L nul
public static Language.L[] values()
for (Language.L c : Language.L.values()) System.out.println(c);
public static Language.L 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 nullCopyright © 2016. All rights reserved.