public enum KommunikationsZustand extends java.lang.Enum<KommunikationsZustand>
Enum Constant and Description |
---|
na
Der
KommunikationsZustand "Nicht ermittelbar" (-1). |
normal
Der
KommunikationsZustand "in Ordnung" (1). |
Störung
Der
KommunikationsZustand "Kommunikationsstörung" (0). |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getText()
Liefert den Namen des
KommunikationsZustand es. |
int |
getValue()
Liefert die Ordinalzahl des
KommunikationsZustand es. |
static KommunikationsZustand |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KommunikationsZustand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KommunikationsZustand na
KommunikationsZustand
"Nicht ermittelbar" (-1).public static final KommunikationsZustand Störung
KommunikationsZustand
"Kommunikationsstörung" (0).public static final KommunikationsZustand normal
KommunikationsZustand
"in Ordnung" (1).public static KommunikationsZustand[] values()
for (KommunikationsZustand c : KommunikationsZustand.values()) System.out.println(c);
public static KommunikationsZustand 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 nullpublic java.lang.String getText()
KommunikationsZustand
es.KommunikationsZustand
es.public int getValue()
KommunikationsZustand
es.KommunikationsZustand
es.