public enum Luftnotfall extends Enum<Luftnotfall>
7500 – Flugzeugentführung (hijacking; seven-five - man with a knife)
7600 – Funkausfall (radio failure; seven-six - hear nix / radio nix / need a radio fix)
7700 – Luftnotfall (emergency; seven-seven - going to heaven / falling from heaven / pray to heaven)
| Enum Constant and Description |
|---|
ENTFUEHRUNG
7500 – Flugzeugentführung (hijacking; seven-five - man with a knife)
|
FUNKAUSFALL
Funkausfall (radio failure; seven-six - hear nix / radio nix / need a radio fix)
|
LUFTNOTFALL
Luftnotfall (emergency; seven-seven - going to heaven / falling from heaven / pray to heaven)
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCode()
Liefert die Code Nummer des Notfalls.
|
String |
getText()
Liefert den Text des Notfalls.
|
String |
toString() |
static Luftnotfall |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Luftnotfall[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Luftnotfall ENTFUEHRUNG
public static final Luftnotfall FUNKAUSFALL
public static final Luftnotfall LUFTNOTFALL
public static Luftnotfall[] values()
for (Luftnotfall c : Luftnotfall.values()) System.out.println(c);
public static Luftnotfall 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 String getCode()
public String getText()
public String toString()
toString in class Enum<Luftnotfall>Copyright © 2016. All rights reserved.