Uses of Class org.quartz.CronScheduleBuilder (Quartz Parent POM 2.0.1 API)

Quartz Java



Uses of Class
org.quartz.CronScheduleBuilder

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(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(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.
 



Copyright 2001-2011, Terracotta, Inc.