public static enum TestRunner.Status extends Enum<TestRunner.Status>
Enum Constant and Description |
---|
CANCELED |
FAILED |
FINISHED |
INITIALIZED |
RUNNING |
WARNING |
Modifier and Type | Method and Description |
---|---|
static TestRunner.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestRunner.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestRunner.Status INITIALIZED
public static final TestRunner.Status RUNNING
public static final TestRunner.Status CANCELED
public static final TestRunner.Status FINISHED
public static final TestRunner.Status FAILED
public static final TestRunner.Status WARNING
public static TestRunner.Status[] values()
for (TestRunner.Status c : TestRunner.Status.values()) System.out.println(c);
public static TestRunner.Status 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 nullCopyright © 2019. All Rights Reserved.