public enum MweMethodenErgebnis extends java.lang.Enum<MweMethodenErgebnis>
| Enum Constant and Description |
|---|
JA
Messwertersetzung war moeglich und wurde durchgefuehrt.
|
NEIN
Messwertersetzung war nicht moeglich und Warten waere sinnlos.
|
WARTE
Messwertersetzung war nicht moeglich ABER Warten waere sinnvoll.
|
| Modifier and Type | Method and Description |
|---|---|
static MweMethodenErgebnis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MweMethodenErgebnis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MweMethodenErgebnis JA
public static final MweMethodenErgebnis NEIN
public static final MweMethodenErgebnis WARTE
public static MweMethodenErgebnis[] values()
for (MweMethodenErgebnis c : MweMethodenErgebnis.values()) System.out.println(c);
public static MweMethodenErgebnis 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 null