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