public enum TestPlanStatus extends Enum<TestPlanStatus>
| Enum Constant and Description |
|---|
DID_NOT_RUN
Deprecated.
|
ERROR
Entity execution caused an error.
|
FAIL
Entity execution is failed.
|
INCOMPLETE
Deprecated.
|
RUNNING
Entity execution is running.
|
SUCCESS
Entity execution is success.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TestPlanStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestPlanStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestPlanStatus SUCCESS
public static final TestPlanStatus FAIL
public static final TestPlanStatus ERROR
public static final TestPlanStatus RUNNING
@Deprecated public static final TestPlanStatus DID_NOT_RUN
@Deprecated public static final TestPlanStatus INCOMPLETE
public static TestPlanStatus[] values()
for (TestPlanStatus c : TestPlanStatus.values()) System.out.println(c);
public static TestPlanStatus 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<TestPlanStatus>Copyright © 2019 WSO2. All rights reserved.