-
Create a DailyTimeIntervalScheduleBuilder.
Calculate and set the endTimeOfDay using count, interval and starTimeOfDay.
DailyTimeIntervalMonthScheduleBuilder.endingDailyAt(org.quartz.TimeOfDay timeOfDay)
Set the startTimeOfDay for this trigger to end firing each day at the given time.
Set the trigger to fire on the given days of the month.
Set the trigger to fire on the given days of the month.
DailyTimeIntervalMonthScheduleBuilder.onEveryDay()
Set the trigger to fire on all days of the month.
DailyTimeIntervalMonthScheduleBuilder.startingDailyAt(org.quartz.TimeOfDay timeOfDay)
Set the trigger to begin firing each day at the given time.
DailyTimeIntervalMonthScheduleBuilder.withInterval(int timeInterval,
org.quartz.DateBuilder.IntervalUnit unit)
Specify the time unit and interval for the Trigger to be produced.
Specify an interval in the IntervalUnit.HOUR that the produced
Trigger will repeat at.
Specify an interval in the IntervalUnit.MINUTE that the produced
Trigger will repeat at.
Specify an interval in the IntervalUnit.SECOND that the produced
Trigger will repeat at.
If the Trigger misfires, use the
DailyTimeIntervalTrigger.MISFIRE_INSTRUCTION_DO_NOTHING instruction.
If the Trigger misfires, use the
DailyTimeIntervalTrigger.MISFIRE_INSTRUCTION_FIRE_ONCE_NOW instruction.
If the Trigger misfires, use the
Trigger.MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY instruction.
Set number of times for interval to repeat.