public enum TestResultStatus extends java.lang.Enum<TestResultStatus>
Modifier and Type | Method and Description |
---|---|
static TestResultStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestResultStatus PASSED
public static final TestResultStatus FAILED
public static final TestResultStatus SKIPPED
public static final TestResultStatus ERROR
public static TestResultStatus[] values()
for (TestResultStatus c : TestResultStatus.values()) System.out.println(c);
public static TestResultStatus 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