public static enum FieldDataRaw.EMERGENCY extends Enum<FieldDataRaw.EMERGENCY>
| Enum Constant and Description |
|---|
NO
Kein Notfall
|
NOT_USED
Unbekannter Notfallstatus.
|
YES
Notfall.
|
| Modifier and Type | Method and Description |
|---|---|
static FieldDataRaw.EMERGENCY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldDataRaw.EMERGENCY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldDataRaw.EMERGENCY YES
public static final FieldDataRaw.EMERGENCY NO
public static final FieldDataRaw.EMERGENCY NOT_USED
public static FieldDataRaw.EMERGENCY[] values()
for (FieldDataRaw.EMERGENCY c : FieldDataRaw.EMERGENCY.values()) System.out.println(c);
public static FieldDataRaw.EMERGENCY 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 nullCopyright © 2015–2016 Thomas Wenzlaff. All rights reserved.