public static enum Weather2API.WeatherType extends java.lang.Enum<Weather2API.WeatherType>
| Enum Constant and Description |
|---|
BLIZZARD |
CLOUD |
HURRICANE |
RAIN |
SANDSTORM |
SUPERCELL |
THUNDER |
TORNADO |
TROPICAL_DEPRESSION |
TROPICAL_DISTURBANCE |
TROPICAL_STORM |
| Modifier and Type | Method and Description |
|---|---|
static Weather2API.WeatherType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Weather2API.WeatherType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Weather2API.WeatherType BLIZZARD
public static final Weather2API.WeatherType CLOUD
public static final Weather2API.WeatherType HURRICANE
public static final Weather2API.WeatherType RAIN
public static final Weather2API.WeatherType SANDSTORM
public static final Weather2API.WeatherType SUPERCELL
public static final Weather2API.WeatherType THUNDER
public static final Weather2API.WeatherType TORNADO
public static final Weather2API.WeatherType TROPICAL_DEPRESSION
public static final Weather2API.WeatherType TROPICAL_DISTURBANCE
public static final Weather2API.WeatherType TROPICAL_STORM
public static Weather2API.WeatherType[] values()
for (Weather2API.WeatherType c : Weather2API.WeatherType.values()) System.out.println(c);
public static Weather2API.WeatherType 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 null