public static enum WeatherConfig.UOM extends java.lang.Enum<WeatherConfig.UOM>
Enum Constant and Description |
---|
date |
datetime |
distance |
percent |
precip_rain |
precip_snow |
pressure |
temp |
time |
vis |
wave_height |
wnd_speed |
Modifier and Type | Method and Description |
---|---|
static WeatherConfig.UOM |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WeatherConfig.UOM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeatherConfig.UOM temp
public static final WeatherConfig.UOM pressure
public static final WeatherConfig.UOM precip_rain
public static final WeatherConfig.UOM precip_snow
public static final WeatherConfig.UOM distance
public static final WeatherConfig.UOM vis
public static final WeatherConfig.UOM wnd_speed
public static final WeatherConfig.UOM wave_height
public static final WeatherConfig.UOM percent
public static final WeatherConfig.UOM date
public static final WeatherConfig.UOM time
public static final WeatherConfig.UOM datetime
public static WeatherConfig.UOM[] values()
for (WeatherConfig.UOM c : WeatherConfig.UOM.values()) System.out.println(c);
public static WeatherConfig.UOM 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