@Deprecated public enum TestCaseStatus extends Enum<TestCaseStatus>
Enum Constant and Description |
---|
DEGRADED
Deprecated.
|
FAILED
Deprecated.
|
IMPROVED
Deprecated.
|
NONE
Deprecated.
|
PASSED
Deprecated.
|
VOLATILE
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static TestCaseStatus |
fromString(String string)
Deprecated.
|
String |
toString()
Deprecated.
|
static TestCaseStatus |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static TestCaseStatus[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCaseStatus FAILED
public static final TestCaseStatus VOLATILE
public static final TestCaseStatus DEGRADED
public static final TestCaseStatus IMPROVED
public static final TestCaseStatus PASSED
public static final TestCaseStatus NONE
public static TestCaseStatus[] values()
for (TestCaseStatus c : TestCaseStatus.values()) System.out.println(c);
public static TestCaseStatus 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<TestCaseStatus>
public static TestCaseStatus fromString(String string)
Copyright © 2016–2020. All rights reserved.