Enum Constant and Description |
---|
Clear
Clear sky (sunny)
|
Default
Default weather (sunny, few clouds)
|
DenseFog
Dense fog (extremely foggy)
|
Fog
Fog (very foggy)
|
HeavyRain
Heavy rain (overcast, foggy, no sun)
|
HeavyRainThunder
Heavy rain and thunder
|
Overcast
Overcast (no sun)
|
Rain
Rain (overcast, no sun)
|
RainThunder
Rain and thunder
|
Storm
Storm (overcast, foggy, no sun)
|
Modifier and Type | Method and Description |
---|---|
static Weather |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Weather[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Weather Default
public static final Weather Clear
public static final Weather Overcast
public static final Weather Rain
public static final Weather RainThunder
public static final Weather HeavyRain
public static final Weather HeavyRainThunder
public static final Weather Storm
public static final Weather Fog
public static final Weather DenseFog
public static Weather[] values()
for (Weather c : Weather.values()) System.out.println(c);
public static Weather 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