public enum WeatherLanguage extends Enum<WeatherLanguage>
Enum Constant and Description |
---|
bg |
ca |
de |
en |
es |
fi |
fr |
hr |
it |
nl |
pl |
pt |
ro |
ru |
se |
sp |
sv |
tr |
ua |
uk |
zh |
zh_cn |
zh_tw |
Modifier and Type | Method and Description |
---|---|
static WeatherLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WeatherLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeatherLanguage en
public static final WeatherLanguage ru
public static final WeatherLanguage it
public static final WeatherLanguage es
public static final WeatherLanguage sp
public static final WeatherLanguage uk
public static final WeatherLanguage ua
public static final WeatherLanguage de
public static final WeatherLanguage pt
public static final WeatherLanguage ro
public static final WeatherLanguage pl
public static final WeatherLanguage fi
public static final WeatherLanguage nl
public static final WeatherLanguage fr
public static final WeatherLanguage bg
public static final WeatherLanguage sv
public static final WeatherLanguage se
public static final WeatherLanguage zh_tw
public static final WeatherLanguage zh
public static final WeatherLanguage zh_cn
public static final WeatherLanguage tr
public static final WeatherLanguage hr
public static final WeatherLanguage ca
public static WeatherLanguage[] values()
for (WeatherLanguage c : WeatherLanguage.values()) System.out.println(c);
public static WeatherLanguage 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 nullApache Camel