JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.endAt(LocalDateTime triggerEndTime) |
Set the time at which the Trigger will no longer fire - even if it's
schedule has remaining repeats.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.forJob(com.helger.quartz.IJobDetail jobDetail) |
Set the identity of the Job which should be fired by the produced Trigger,
by extracting the JobKey from the given job.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.forJob(com.helger.quartz.JobKey keyOfJobToFire) |
Set the identity of the Job which should be fired by the produced Trigger.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.forJob(String jobName) |
Set the identity of the Job which should be fired by the produced Trigger -
a JobKey will be produced with the given name and default
group.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.forJob(String jobName,
String jobGroup) |
Set the identity of the Job which should be fired by the produced Trigger -
a JobKey will be produced with the given name and group.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.modifiedByCalendar(String calName) |
Set the name of the ICalendar that should be applied to this
Trigger's schedule.
|
static JDK8TriggerBuilder<com.helger.quartz.ITrigger> |
JDK8TriggerBuilder.newTrigger() |
Create a new JDK8TriggerBuilder with which to define a specification for a
Trigger.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.startAt(LocalDateTime triggerStartTime) |
Set the time the Trigger should start at - the trigger may or may not fire
at this time - depending upon the schedule configured for the Trigger.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.startNow() |
Set the time the Trigger should start at to the current moment - the
trigger may or may not fire at this time - depending upon the schedule
configured for the Trigger.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.usingJobData(com.helger.quartz.JobDataMap newJobDataMap) |
Set the Trigger's JobDataMap, adding any values to it that were
already set on this JDK8TriggerBuilder using any of the other
'usingJobData' methods.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.usingJobData(String dataKey,
boolean value) |
Add the given key-value pair to the Trigger's JobDataMap.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.usingJobData(String dataKey,
double value) |
Add the given key-value pair to the Trigger's JobDataMap.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.usingJobData(String dataKey,
float value) |
Add the given key-value pair to the Trigger's JobDataMap.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.usingJobData(String dataKey,
int value) |
Add the given key-value pair to the Trigger's JobDataMap.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.usingJobData(String dataKey,
long value) |
Add the given key-value pair to the Trigger's JobDataMap.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.usingJobData(String dataKey,
Object value) |
Add the given key-value pair to the Trigger's JobDataMap.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.withDescription(String triggerDescription) |
Set the given (human-meaningful) description of the Trigger.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.withIdentity(com.helger.quartz.TriggerKey triggerKey) |
Use the given TriggerKey to identify the Trigger.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.withIdentity(String name) |
Use a TriggerKey with the given name and default group to
identify the Trigger.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.withIdentity(String name,
String group) |
Use a TriggerKey with the given name and group to identify the Trigger.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.withPriority(int triggerPriority) |
Set the Trigger's priority.
|
JDK8TriggerBuilder<T> |
JDK8TriggerBuilder.withSchedule(com.helger.quartz.IScheduleBuilder<? extends T> schedBuilder) |
Set the IScheduleBuilder that will be used to define the Trigger's
schedule.
|