public enum TourLanguage extends Enum<TourLanguage>
Modifier and Type | Method and Description |
---|---|
static TourLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TourLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TourLanguage EN
public static final TourLanguage FR
public static final TourLanguage DE
public static final TourLanguage IT
public static final TourLanguage JP
public static final TourLanguage KP
public static final TourLanguage ZH
public static final TourLanguage ES
public static final TourLanguage PT
public static TourLanguage[] values()
for (TourLanguage c : TourLanguage.values()) System.out.println(c);
public static TourLanguage 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 © 2014. All Rights Reserved.