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