public static enum ITrigger.ECompletedExecutionInstruction extends Enum<ITrigger.ECompletedExecutionInstruction>
NOOP Instructs the that the
IScheduler has no further instructions.
ITrigger
RE_EXECUTE_JOB Instructs the
that the IScheduler wants the
ITrigger to re-execute
immediately. If not in a 'RECOVERING' or 'FAILED_OVER' situation, the
execution context will be re-used (giving the IJobDetailJob the ability
to 'see' anything placed in the context by its last execution).
SET_TRIGGER_COMPLETE Instructs the
that the IScheduler
should be put in the ITriggerCOMPLETE state.
DELETE_TRIGGER Instructs the
that the IScheduler wants itself deleted.
ITrigger
SET_ALL_JOB_TRIGGERS_COMPLETE Instructs the
that all ISchedulerTriggers referencing
the same as this one
should be put in the IJobDetailCOMPLETE state.
SET_TRIGGER_ERROR Instructs the
that all ISchedulerTriggers referencing
the same as this one
should be put in the IJobDetailERROR state.
SET_ALL_JOB_TRIGGERS_ERROR Instructs the
that the ISchedulerTrigger should be put
in the ERROR state.
| Enum Constant and Description |
|---|
DELETE_TRIGGER |
NOOP |
RE_EXECUTE_JOB |
SET_ALL_JOB_TRIGGERS_COMPLETE |
SET_ALL_JOB_TRIGGERS_ERROR |
SET_TRIGGER_COMPLETE |
SET_TRIGGER_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static ITrigger.ECompletedExecutionInstruction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ITrigger.ECompletedExecutionInstruction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ITrigger.ECompletedExecutionInstruction NOOP
public static final ITrigger.ECompletedExecutionInstruction RE_EXECUTE_JOB
public static final ITrigger.ECompletedExecutionInstruction SET_TRIGGER_COMPLETE
public static final ITrigger.ECompletedExecutionInstruction DELETE_TRIGGER
public static final ITrigger.ECompletedExecutionInstruction SET_ALL_JOB_TRIGGERS_COMPLETE
public static final ITrigger.ECompletedExecutionInstruction SET_TRIGGER_ERROR
public static final ITrigger.ECompletedExecutionInstruction SET_ALL_JOB_TRIGGERS_ERROR
public static ITrigger.ECompletedExecutionInstruction[] values()
for (ITrigger.ECompletedExecutionInstruction c : ITrigger.ECompletedExecutionInstruction.values()) System.out.println(c);
public static ITrigger.ECompletedExecutionInstruction 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 © 2016–2021 Philip Helger. All rights reserved.