public enum ErrorHandling extends Enum<ErrorHandling>
| Enum Constant and Description |
|---|
ABORT
Der komplette Generierungsvorgang wird abgebrochen.
|
GENERATE_ERROR_STEP
Es wird ein unsinniger Step eingefügt, der dazu führt, dass ein Problem erzeugt wird
|
SKIP_TESTCASE
TestCase wird ausgelassen und der Status auf Invalid gesetzt
|
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<ErrorHandling> |
ALL_CONSTANTS
Dieses Set enthält alle ErrorHandling-Alternativen.
|
| Modifier and Type | Method and Description |
|---|---|
String |
displayString()
Gibt den Text des Enums für die Verwendung in der GUI zurück.
|
static ErrorHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorHandling GENERATE_ERROR_STEP
public static final ErrorHandling SKIP_TESTCASE
public static final ErrorHandling ABORT
public static final EnumSet<ErrorHandling> ALL_CONSTANTS
public static ErrorHandling[] values()
for (ErrorHandling c : ErrorHandling.values()) System.out.println(c);
public static ErrorHandling 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 final String displayString()
Copyright © 2016–2023 MicroNova AG. All rights reserved.