public enum PrecipitationTypeEnum extends java.lang.Enum<PrecipitationTypeEnum>
Java class for PrecipitationTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PrecipitationTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="drizzle"/> <enumeration value="freezingRain"/> <enumeration value="hail"/> <enumeration value="rain"/> <enumeration value="sleet"/> <enumeration value="snow"/> </restriction> </simpleType>
Enum Constant and Description |
---|
DRIZZLE
Light, fine rain.
|
FREEZING_RAIN
Freezing rain.
|
HAIL
Small balls of ice and compacted snow.
|
RAIN
Rain.
|
SLEET
Wet snow mixed with rain.
|
SNOW
Snow.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
value |
Modifier and Type | Method and Description |
---|---|
static PrecipitationTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static PrecipitationTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrecipitationTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrecipitationTypeEnum DRIZZLE
public static final PrecipitationTypeEnum FREEZING_RAIN
public static final PrecipitationTypeEnum HAIL
public static final PrecipitationTypeEnum RAIN
public static final PrecipitationTypeEnum SLEET
public static final PrecipitationTypeEnum SNOW
public static PrecipitationTypeEnum[] values()
for (PrecipitationTypeEnum c : PrecipitationTypeEnum.values()) System.out.println(c);
public static PrecipitationTypeEnum 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 nullpublic java.lang.String value()
public static PrecipitationTypeEnum fromValue(java.lang.String v)