Enum Trigger.CompletedExecutionInstruction
- All Implemented Interfaces:
Serializable
,Comparable<Trigger.CompletedExecutionInstruction>
,java.lang.constant.Constable
- Enclosing interface:
Trigger
NOOP
Instructs the Scheduler
that the Trigger
has no further instructions.
RE_EXECUTE_JOB
Instructs the
that the Scheduler
wants the Trigger
to re-execute
immediately. If not in a 'RECOVERING' or 'FAILED_OVER' situation, the execution context will be
re-used (giving the JobDetail
Job
the ability to 'see' anything placed in the context by its
last execution).
SET_TRIGGER_COMPLETE
Instructs the
that the
Scheduler
should be put in the Trigger
COMPLETE
state.
DELETE_TRIGGER
Instructs the
that the Scheduler
wants itself deleted.
Trigger
SET_ALL_JOB_TRIGGERS_COMPLETE
Instructs the
that
all Scheduler
Trigger
s referencing the same
as this one should be put in the JobDetail
COMPLETE
state.
SET_TRIGGER_ERROR
Instructs the
that all Scheduler
Trigger
s referencing the same
as this one
should be put in the JobDetail
ERROR
state.
SET_ALL_JOB_TRIGGERS_ERROR
Instructs the
that
the Scheduler
Trigger
should be put in the ERROR
state.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NOOP
-
RE_EXECUTE_JOB
-
SET_TRIGGER_COMPLETE
-
DELETE_TRIGGER
-
SET_ALL_JOB_TRIGGERS_COMPLETE
-
SET_TRIGGER_ERROR
-
SET_ALL_JOB_TRIGGERS_ERROR
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-