public static enum FieldDataRaw.ON_GROUND extends Enum<FieldDataRaw.ON_GROUND>
| Enum Constant and Description |
|---|
NO
Flugzeug nicht am Boden.
|
NOT_USED
Unbekannter Flugstatus.
|
YES
Flugzeug am Boden.
|
| Modifier and Type | Method and Description |
|---|---|
static FieldDataRaw.ON_GROUND |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldDataRaw.ON_GROUND[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldDataRaw.ON_GROUND YES
public static final FieldDataRaw.ON_GROUND NO
public static final FieldDataRaw.ON_GROUND NOT_USED
public static FieldDataRaw.ON_GROUND[] values()
for (FieldDataRaw.ON_GROUND c : FieldDataRaw.ON_GROUND.values()) System.out.println(c);
public static FieldDataRaw.ON_GROUND 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.