protected static enum UDRohdaten.WindInformationEnum extends java.lang.Enum<UDRohdaten.WindInformationEnum>
| Enum Constant and Description |
|---|
DIRECTION_BEARING
Windrichtung.
|
DIRECTION_COMPASS
Windrichtung.
|
MAXIMUM_SPEED
Spitzengeschwindigkeit.
|
SPEED
Windgeschwindigkeit (im Mittel).
|
| Modifier and Type | Method and Description |
|---|---|
static UDRohdaten.WindInformationEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UDRohdaten.WindInformationEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UDRohdaten.WindInformationEnum SPEED
public static final UDRohdaten.WindInformationEnum MAXIMUM_SPEED
public static final UDRohdaten.WindInformationEnum DIRECTION_BEARING
public static final UDRohdaten.WindInformationEnum DIRECTION_COMPASS
public static UDRohdaten.WindInformationEnum[] values()
for (UDRohdaten.WindInformationEnum c : UDRohdaten.WindInformationEnum.values()) System.out.println(c);
public static UDRohdaten.WindInformationEnum 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