Serializable, Comparable<WeatherType>public enum WeatherType extends Enum<WeatherType>
| Enum Constant | Description | 
|---|---|
| CLEAR | Clear weather, clouds but no rain. | 
| DOWNFALL | Raining or snowing depending on biome. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static WeatherType | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static WeatherType[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final WeatherType DOWNFALL
public static final WeatherType CLEAR
public static WeatherType[] values()
for (WeatherType c : WeatherType.values()) System.out.println(c);
public static WeatherType 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 © 2020. All rights reserved.