public static enum StartFehlerVerhalten.Option extends java.lang.Enum<StartFehlerVerhalten.Option>
| Enum Constant and Description |
|---|
ABBRUCH |
BEENDEN |
IGNORIEREN |
| Modifier and Type | Method and Description |
|---|---|
static StartFehlerVerhalten.Option |
fromValue(java.lang.String value) |
java.lang.String |
toString() |
java.lang.String |
value() |
static StartFehlerVerhalten.Option |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StartFehlerVerhalten.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartFehlerVerhalten.Option BEENDEN
public static final StartFehlerVerhalten.Option ABBRUCH
public static final StartFehlerVerhalten.Option IGNORIEREN
public static StartFehlerVerhalten.Option[] values()
for (StartFehlerVerhalten.Option c : StartFehlerVerhalten.Option.values()) System.out.println(c);
public static StartFehlerVerhalten.Option 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 toString()
toString in class java.lang.Enum<StartFehlerVerhalten.Option>public java.lang.String value()
public static StartFehlerVerhalten.Option fromValue(java.lang.String value)