public enum ExecutionState extends Enum<ExecutionState>
| Enum Constant and Description |
|---|
Aborting
Execution is aborting
|
Error
Done executing with errors
|
Executing
Currently executing
|
Failed
Executed and failed
|
Passed
Executed and passed
|
Ready
Ready for execution
|
Skipped
Execution skipped
|
Suspended
Execution was suspended
|
Unknown
Execution state is unknown
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionState Unknown
public static final ExecutionState Ready
public static final ExecutionState Skipped
public static final ExecutionState Passed
public static final ExecutionState Failed
public static final ExecutionState Aborting
public static final ExecutionState Executing
public static final ExecutionState Error
public static final ExecutionState Suspended
public static ExecutionState[] values()
for (ExecutionState c : ExecutionState.values()) System.out.println(c);
public static ExecutionState 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–2019. All rights reserved.