public enum TaskExecutionStatus extends Enum<TaskExecutionStatus>
TaskExecutionResource
.Enum Constant and Description |
---|
COMPLETE
The task execution completed successfully.
|
ERROR
The task execution did not complete successfully.
|
RUNNING
The task execution is still executing.
|
UNKNOWN
The task execution was never executed.
|
Modifier and Type | Method and Description |
---|---|
static TaskExecutionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskExecutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskExecutionStatus ERROR
public static final TaskExecutionStatus RUNNING
public static final TaskExecutionStatus COMPLETE
public static final TaskExecutionStatus UNKNOWN
public static TaskExecutionStatus[] values()
for (TaskExecutionStatus c : TaskExecutionStatus.values()) System.out.println(c);
public static TaskExecutionStatus 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 © 2024 Pivotal Software, Inc.. All rights reserved.