@Generated public enum TriggerType extends Enum<TriggerType>
* `PERIODIC`: Schedules that periodically trigger runs, such as a cron scheduler. * `ONE_TIME`: One time triggers that fire a single run. This occurs you triggered a single run on demand through the UI or the API. * `RETRY`: Indicates a run that is triggered as a retry of a previously failed run. This occurs when you request to re-run the job in case of failures. * `RUN_JOB_TASK`: Indicates a run that is triggered using a Run Job task. * `FILE_ARRIVAL`: Indicates a run that is triggered by a file arrival. * `TABLE`: Indicates a run that is triggered by a table update.
| Enum Constant and Description |
|---|
FILE_ARRIVAL |
ONE_TIME |
PERIODIC |
RETRY |
RUN_JOB_TASK |
TABLE |
| Modifier and Type | Method and Description |
|---|---|
static TriggerType |
valueOf(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.
|
public static final TriggerType FILE_ARRIVAL
public static final TriggerType ONE_TIME
public static final TriggerType PERIODIC
public static final TriggerType RETRY
public static final TriggerType RUN_JOB_TASK
public static final TriggerType TABLE
public static TriggerType[] values()
for (TriggerType c : TriggerType.values()) System.out.println(c);
public static TriggerType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.