Enum PipelineState
- java.lang.Object
-
- java.lang.Enum<PipelineState>
-
- com.databricks.sdk.service.pipelines.PipelineState
-
- All Implemented Interfaces:
Serializable
,Comparable<PipelineState>
@Generated public enum PipelineState extends Enum<PipelineState>
The pipeline state.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PipelineState
valueOf(String name)
Returns the enum constant of this type with the specified name.static PipelineState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELETED
public static final PipelineState DELETED
-
DEPLOYING
public static final PipelineState DEPLOYING
-
FAILED
public static final PipelineState FAILED
-
IDLE
public static final PipelineState IDLE
-
RECOVERING
public static final PipelineState RECOVERING
-
RESETTING
public static final PipelineState RESETTING
-
RUNNING
public static final PipelineState RUNNING
-
STARTING
public static final PipelineState STARTING
-
STOPPING
public static final PipelineState STOPPING
-
-
Method Detail
-
values
public static PipelineState[] 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 (PipelineState c : PipelineState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PipelineState 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
-
-