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