public enum AtmosphericFactors extends Enum<AtmosphericFactors>
Clase Java para AtmosphericFactors.
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
<simpleType name="AtmosphericFactors">
<restriction base="{http://www.w3.org/2001/XMLSchema}int">
<enumeration value="1"/>
<enumeration value="2"/>
<enumeration value="3"/>
<enumeration value="4"/>
<enumeration value="5"/>
<enumeration value="6"/>
<enumeration value="7"/>
<enumeration value="8"/>
<enumeration value="9"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DRIZZLE |
HAIL |
HEAVY_RAIN |
INTENSE_FOG |
LIGHT_FOG |
NICE_WEATHER |
OTHER |
SNOW |
STRONG_WIND |
| Modifier and Type | Method and Description |
|---|---|
static AtmosphericFactors |
fromValue(int v) |
int |
value() |
static AtmosphericFactors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AtmosphericFactors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AtmosphericFactors NICE_WEATHER
public static final AtmosphericFactors INTENSE_FOG
public static final AtmosphericFactors LIGHT_FOG
public static final AtmosphericFactors DRIZZLE
public static final AtmosphericFactors HEAVY_RAIN
public static final AtmosphericFactors HAIL
public static final AtmosphericFactors SNOW
public static final AtmosphericFactors STRONG_WIND
public static final AtmosphericFactors OTHER
public static AtmosphericFactors[] values()
for (AtmosphericFactors c : AtmosphericFactors.values()) System.out.println(c);
public static AtmosphericFactors 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 nullpublic int value()
public static AtmosphericFactors fromValue(int v)
Copyright © 2018. All rights reserved.