public enum WeatherIcon extends java.lang.Enum<WeatherIcon>
| Enum Constant and Description |
|---|
CLEAR |
FOG |
HAIL |
LSNOW |
MCLOUDY |
PCLOUDY |
RAIN |
SHOWER |
SLEET |
SNOW |
TORNADO |
TSHOWER |
TSTORM |
UNKNOWN |
WINDY |
| Modifier and Type | Method and Description |
|---|---|
static WeatherIcon |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WeatherIcon[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeatherIcon UNKNOWN
public static final WeatherIcon TORNADO
public static final WeatherIcon TSTORM
public static final WeatherIcon TSHOWER
public static final WeatherIcon SHOWER
public static final WeatherIcon RAIN
public static final WeatherIcon SLEET
public static final WeatherIcon LSNOW
public static final WeatherIcon SNOW
public static final WeatherIcon HAIL
public static final WeatherIcon FOG
public static final WeatherIcon WINDY
public static final WeatherIcon PCLOUDY
public static final WeatherIcon MCLOUDY
public static final WeatherIcon CLEAR
public static WeatherIcon[] values()
for (WeatherIcon c : WeatherIcon.values()) System.out.println(c);
public static WeatherIcon 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