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