public enum FailureReports extends Enum<FailureReports>
| Enum Constant and Description |
|---|
IMMEDIATE
Failures are reported immediately when they are detected.
|
ON_CLOSE
Failures are reported when tests are completed
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static FailureReports |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FailureReports[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FailureReports IMMEDIATE
public static final FailureReports ON_CLOSE
public static FailureReports[] values()
for (FailureReports c : FailureReports.values()) System.out.println(c);
public static FailureReports 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 String getName()
Copyright © 2022. All rights reserved.