public enum TestResultStatus extends Enum<TestResultStatus>
| Enum Constant and Description |
|---|
DEGRADED |
FAILED |
IMPROVED |
NONE |
PASSED |
VOLATILE |
| Modifier and Type | Method and Description |
|---|---|
static TestResultStatus |
fromString(String string) |
String |
toString() |
static TestResultStatus |
valueOf(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 FAILED
public static final TestResultStatus VOLATILE
public static final TestResultStatus DEGRADED
public static final TestResultStatus IMPROVED
public static final TestResultStatus PASSED
public static final TestResultStatus NONE
public static TestResultStatus[] values()
for (TestResultStatus c : TestResultStatus.values()) System.out.println(c);
public static TestResultStatus 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 nullpublic static TestResultStatus fromString(String string)
public String toString()
toString in class Enum<TestResultStatus>Copyright © 2016–2017. All rights reserved.