public enum MeteorologicalMeasurement extends Enum<MeteorologicalMeasurement> implements Enumeration
Enum Constant and Description |
---|
DRY_TEMPERATURE
The dry bulb temperature.
|
DRY_ZENITH_PATH_DELAY
The tropospheric path delay due to the dry atmosphere in the vertical direction.
|
HAIL_INDICATOR
Hail indicator.
|
PRESSURE
Total air pressure.
|
RAIN_INCREMENT
Rain Accumulation since last measurement.
|
RELATIVE_HUMIDITY
The Relative Humidity.
|
TOTAL_ZENITH_PATH_DELAY
The total tropospheric path delay in the vertical direction.
|
WET_ZENITH_PATH_DELAY
The tropospheric path delay due to the wet atmosphere in the vertical direction.
|
WIND_AZIMUTH
Wind direction azimuth.
|
WIND_SPEED
Wind Speed.
|
Modifier and Type | Method and Description |
---|---|
static MeteorologicalMeasurement |
getDefault()
Get the enum constant that is considered to be the default.
|
static MeteorologicalMeasurement |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static MeteorologicalMeasurement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MeteorologicalMeasurement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeteorologicalMeasurement PRESSURE
public static final MeteorologicalMeasurement DRY_TEMPERATURE
public static final MeteorologicalMeasurement RELATIVE_HUMIDITY
public static final MeteorologicalMeasurement WET_ZENITH_PATH_DELAY
public static final MeteorologicalMeasurement DRY_ZENITH_PATH_DELAY
public static final MeteorologicalMeasurement TOTAL_ZENITH_PATH_DELAY
public static final MeteorologicalMeasurement WIND_AZIMUTH
public static final MeteorologicalMeasurement WIND_SPEED
public static final MeteorologicalMeasurement RAIN_INCREMENT
public static final MeteorologicalMeasurement HAIL_INDICATOR
public static MeteorologicalMeasurement[] values()
for (MeteorologicalMeasurement c : MeteorologicalMeasurement.values()) System.out.println(c);
public static MeteorologicalMeasurement 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 getValue()
getValue
in interface Enumeration
@Nonnull public static MeteorologicalMeasurement getFromValue(int value)
value
- a numeric value.@Nonnull public static MeteorologicalMeasurement getDefault()