public static enum TestResult.Status extends Enum<TestResult.Status>
Enum Constant and Description |
---|
FAILED
The test failed
|
PASSED
The test passed
|
SKIPPED
The test was skipped due to some deployment problem
|
Modifier and Type | Method and Description |
---|---|
static TestResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestResult.Status PASSED
public static final TestResult.Status FAILED
public static final TestResult.Status SKIPPED
public static TestResult.Status[] values()
for (TestResult.Status c : TestResult.Status.values()) System.out.println(c);
public static TestResult.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 © 2017 JBoss by Red Hat. All rights reserved.