private static enum VerboseReporter.Status extends java.lang.Enum<VerboseReporter.Status>
| Enum Constant and Description |
|---|
FAILURE |
SKIP |
STARTED |
SUCCESS |
SUCCESS_PERCENTAGE_FAILURE |
| Modifier and Type | Field and Description |
|---|---|
private int |
status |
| Modifier and Type | Method and Description |
|---|---|
static VerboseReporter.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerboseReporter.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerboseReporter.Status SUCCESS
public static final VerboseReporter.Status FAILURE
public static final VerboseReporter.Status SKIP
public static final VerboseReporter.Status SUCCESS_PERCENTAGE_FAILURE
public static final VerboseReporter.Status STARTED
public static VerboseReporter.Status[] values()
for (VerboseReporter.Status c : VerboseReporter.Status.values()) System.out.println(c);
public static VerboseReporter.Status 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