Package com.databricks.sdk.service.jobs
Enum TriggerType
- java.lang.Object
-
- java.lang.Enum<TriggerType>
-
- com.databricks.sdk.service.jobs.TriggerType
-
- All Implemented Interfaces:
Serializable,Comparable<TriggerType>
@Generated public enum TriggerType extends Enum<TriggerType>
This describes an enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FILE_ARRIVALONE_TIMEPERIODICRETRYRUN_JOB_TASK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TriggerTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TriggerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILE_ARRIVAL
public static final TriggerType FILE_ARRIVAL
-
ONE_TIME
public static final TriggerType ONE_TIME
-
PERIODIC
public static final TriggerType PERIODIC
-
RETRY
public static final TriggerType RETRY
-
RUN_JOB_TASK
public static final TriggerType RUN_JOB_TASK
-
-
Method Detail
-
values
public static TriggerType[] 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 (TriggerType c : TriggerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TriggerType 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
-
-