Package com.databricks.sdk.service.jobs
Enum RunLifeCycleState
- java.lang.Object
-
- java.lang.Enum<RunLifeCycleState>
-
- com.databricks.sdk.service.jobs.RunLifeCycleState
-
- All Implemented Interfaces:
Serializable,Comparable<RunLifeCycleState>
@Generated public enum RunLifeCycleState extends Enum<RunLifeCycleState>
This describes an enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCKEDINTERNAL_ERRORPENDINGRUNNINGSKIPPEDTERMINATEDTERMINATINGWAITING_FOR_RETRY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RunLifeCycleStatevalueOf(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.
-
-
-
Enum Constant Detail
-
BLOCKED
public static final RunLifeCycleState BLOCKED
-
INTERNAL_ERROR
public static final RunLifeCycleState INTERNAL_ERROR
-
PENDING
public static final RunLifeCycleState PENDING
-
RUNNING
public static final RunLifeCycleState RUNNING
-
SKIPPED
public static final RunLifeCycleState SKIPPED
-
TERMINATED
public static final RunLifeCycleState TERMINATED
-
TERMINATING
public static final RunLifeCycleState TERMINATING
-
WAITING_FOR_RETRY
public static final RunLifeCycleState WAITING_FOR_RETRY
-
-
Method Detail
-
values
public static RunLifeCycleState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RunLifeCycleState c : RunLifeCycleState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RunLifeCycleState valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-