|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CronScheduleBuilder | |
|---|---|
| org.quartz | The main package of Quartz, containing the client-side interfaces. |
| Uses of CronScheduleBuilder in org.quartz |
|---|
| Methods in org.quartz that return CronScheduleBuilder | |
|---|---|
static CronScheduleBuilder |
CronScheduleBuilder.cronSchedule(java.lang.String cronExpression)
Create a CronScheduleBuilder with the given cron-expression. |
static CronScheduleBuilder |
CronScheduleBuilder.dailyAtHourAndMinute(int hour,
int minute)
Create a CronScheduleBuilder with a cron-expression that sets the schedule to fire every day at the given time (hour and minute). |
CronScheduleBuilder |
CronScheduleBuilder.inTimeZone(java.util.TimeZone tz)
The TimeZone in which to base the schedule. |
static CronScheduleBuilder |
CronScheduleBuilder.monthlyOnDayAndHourAndMinute(int dayOfMonth,
int hour,
int minute)
Create a CronScheduleBuilder with a cron-expression that sets the schedule to fire one per month on the given day of month at the given time (hour and minute). |
static CronScheduleBuilder |
CronScheduleBuilder.weeklyOnDayAndHourAndMinute(int dayOfWeek,
int hour,
int minute)
Create a CronScheduleBuilder with a cron-expression that sets the schedule to fire one per week on the given day at the given time (hour and minute). |
CronScheduleBuilder |
CronScheduleBuilder.withMisfireHandlingInstructionDoNothing()
If the Trigger misfires, use the CronTrigger.MISFIRE_INSTRUCTION_DO_NOTHING instruction. |
CronScheduleBuilder |
CronScheduleBuilder.withMisfireHandlingInstructionFireAndProceed()
If the Trigger misfires, use the CronTrigger.MISFIRE_INSTRUCTION_FIRE_ONCE_NOW instruction. |
CronScheduleBuilder |
CronScheduleBuilder.withMisfireHandlingInstructionIgnoreMisfires()
If the Trigger misfires, use the Trigger.MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY instruction. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||