Enum UpdateInfoCause
- java.lang.Object
-
- java.lang.Enum<UpdateInfoCause>
-
- com.databricks.sdk.service.pipelines.UpdateInfoCause
-
- All Implemented Interfaces:
Serializable
,Comparable<UpdateInfoCause>
@Generated public enum UpdateInfoCause extends Enum<UpdateInfoCause>
What triggered this update.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description API_CALL
JOB_TASK
RETRY_ON_FAILURE
SCHEMA_CHANGE
SERVICE_UPGRADE
USER_ACTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UpdateInfoCause
valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateInfoCause[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
API_CALL
public static final UpdateInfoCause API_CALL
-
JOB_TASK
public static final UpdateInfoCause JOB_TASK
-
RETRY_ON_FAILURE
public static final UpdateInfoCause RETRY_ON_FAILURE
-
SCHEMA_CHANGE
public static final UpdateInfoCause SCHEMA_CHANGE
-
SERVICE_UPGRADE
public static final UpdateInfoCause SERVICE_UPGRADE
-
USER_ACTION
public static final UpdateInfoCause USER_ACTION
-
-
Method Detail
-
values
public static UpdateInfoCause[] 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 (UpdateInfoCause c : UpdateInfoCause.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateInfoCause 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
-
-