public enum TestState extends Enum<TestState>
Enum Constant and Description |
---|
ABORTED |
ENDED |
FAILED |
FAILED_TO_STAGE |
INITIATED |
NOT_INITIATED |
PASSED |
RUNNING |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static TestState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestState PASSED
public static final TestState FAILED
public static final TestState NOT_INITIATED
public static final TestState INITIATED
public static final TestState RUNNING
public static final TestState ENDED
public static final TestState ABORTED
public static final TestState FAILED_TO_STAGE
public static final TestState UNKNOWN
public static TestState[] values()
for (TestState c : TestState.values()) System.out.println(c);
public static TestState 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 nullCopyright © 2016–2022 CA Technologies. All rights reserved.