@Generated public enum RunLifeCycleState extends Enum<RunLifeCycleState>
| Enum Constant and Description |
|---|
BLOCKED |
INTERNAL_ERROR |
PENDING |
QUEUED |
RUNNING |
SKIPPED |
TERMINATED |
TERMINATING |
WAITING_FOR_RETRY |
| Modifier and Type | Method and Description |
|---|---|
static RunLifeCycleState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunLifeCycleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunLifeCycleState BLOCKED
public static final RunLifeCycleState INTERNAL_ERROR
public static final RunLifeCycleState PENDING
public static final RunLifeCycleState QUEUED
public static final RunLifeCycleState RUNNING
public static final RunLifeCycleState SKIPPED
public static final RunLifeCycleState TERMINATED
public static final RunLifeCycleState TERMINATING
public static final RunLifeCycleState WAITING_FOR_RETRY
public static RunLifeCycleState[] values()
for (RunLifeCycleState c : RunLifeCycleState.values()) System.out.println(c);
public static RunLifeCycleState 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. All rights reserved.