|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Trigger.CompletedExecutionInstruction> org.quartz.Trigger.CompletedExecutionInstruction
public static enum Trigger.CompletedExecutionInstruction
NOOP
Instructs the
that the
Scheduler
has no further instructions.Trigger
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.
Enum Constant Summary | |
---|---|
DELETE_TRIGGER
|
|
NOOP
|
|
RE_EXECUTE_JOB
|
|
SET_ALL_JOB_TRIGGERS_COMPLETE
|
|
SET_ALL_JOB_TRIGGERS_ERROR
|
|
SET_TRIGGER_COMPLETE
|
|
SET_TRIGGER_ERROR
|
Method Summary | |
---|---|
static Trigger.CompletedExecutionInstruction |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Trigger.CompletedExecutionInstruction[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Trigger.CompletedExecutionInstruction NOOP
public static final Trigger.CompletedExecutionInstruction RE_EXECUTE_JOB
public static final Trigger.CompletedExecutionInstruction SET_TRIGGER_COMPLETE
public static final Trigger.CompletedExecutionInstruction DELETE_TRIGGER
public static final Trigger.CompletedExecutionInstruction SET_ALL_JOB_TRIGGERS_COMPLETE
public static final Trigger.CompletedExecutionInstruction SET_TRIGGER_ERROR
public static final Trigger.CompletedExecutionInstruction SET_ALL_JOB_TRIGGERS_ERROR
Method Detail |
---|
public static Trigger.CompletedExecutionInstruction[] values()
for (Trigger.CompletedExecutionInstruction c : Trigger.CompletedExecutionInstruction.values()) System.out.println(c);
public static Trigger.CompletedExecutionInstruction valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |