public static enum TestResult.TestStatus extends Enum<TestResult.TestStatus>
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
String |
toString() |
static TestResult.TestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestResult.TestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestResult.TestStatus PASSED
public static final TestResult.TestStatus FAILED
public static final TestResult.TestStatus NO_RUN
public static final TestResult.TestStatus WIP
public static TestResult.TestStatus[] values()
for (TestResult.TestStatus c : TestResult.TestStatus.values()) System.out.println(c);
public static TestResult.TestStatus 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 String toString()
toString
in class Enum<TestResult.TestStatus>
public String getValue()
Copyright © 2018. All rights reserved.