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