Uses of Class
org.quartz.TimeOfDay

Packages that use TimeOfDay
org.quartz The main package of Quartz, containing the client-side interfaces. 
org.quartz.impl.triggers This package contains Trigger implementations that ship with Quartz. 
 

Uses of TimeOfDay in org.quartz
 

Methods in org.quartz that return TimeOfDay
 TimeOfDay DailyTimeIntervalTrigger.getEndTimeOfDay()
          The time of day to complete firing at the given interval.
 TimeOfDay DailyTimeIntervalTrigger.getStartTimeOfDay()
          The time of day to start firing at the given interval.
static TimeOfDay TimeOfDay.hourAndMinuteAndSecondFromDate(Date dateTime)
          Create a TimeOfDay from the given date, in the system default TimeZone.
static TimeOfDay TimeOfDay.hourAndMinuteAndSecondFromDate(Date dateTime, TimeZone tz)
          Create a TimeOfDay from the given date, in the given TimeZone.
static TimeOfDay TimeOfDay.hourAndMinuteFromDate(Date dateTime)
          Create a TimeOfDay from the given date (at the zero-second), in the system default TimeZone.
static TimeOfDay TimeOfDay.hourAndMinuteFromDate(Date dateTime, TimeZone tz)
          Create a TimeOfDay from the given date (at the zero-second), in the system default TimeZone.
static TimeOfDay TimeOfDay.hourAndMinuteOfDay(int hour, int minute)
          Create a TimeOfDay instance for the given hour and minute (at the zero second of the minute).
static TimeOfDay TimeOfDay.hourMinuteAndSecondOfDay(int hour, int minute, int second)
          Create a TimeOfDay instance for the given hour, minute and second.
 

Methods in org.quartz with parameters of type TimeOfDay
 boolean TimeOfDay.before(TimeOfDay timeOfDay)
          Determine with this time of day is before the given time of day.
 DailyTimeIntervalScheduleBuilder DailyTimeIntervalScheduleBuilder.endingDailyAt(TimeOfDay timeOfDay)
          Set the startTimeOfDay for this trigger to end firing each day at the given time.
 DailyTimeIntervalScheduleBuilder DailyTimeIntervalScheduleBuilder.startingDailyAt(TimeOfDay timeOfDay)
          Set the trigger to begin firing each day at the given time.
 

Uses of TimeOfDay in org.quartz.impl.triggers
 

Methods in org.quartz.impl.triggers that return TimeOfDay
 TimeOfDay DailyTimeIntervalTriggerImpl.getEndTimeOfDay()
          The time of day to complete firing at the given interval.
 TimeOfDay DailyTimeIntervalTriggerImpl.getStartTimeOfDay()
          The time of day to start firing at the given interval.
 

Methods in org.quartz.impl.triggers with parameters of type TimeOfDay
 void DailyTimeIntervalTriggerImpl.setEndTimeOfDay(TimeOfDay endTimeOfDay)
           
 void DailyTimeIntervalTriggerImpl.setStartTimeOfDay(TimeOfDay startTimeOfDay)
           
 

Constructors in org.quartz.impl.triggers with parameters of type TimeOfDay
DailyTimeIntervalTriggerImpl(String name, Date startTime, Date endTime, TimeOfDay startTimeOfDay, TimeOfDay endTimeOfDay, DateBuilder.IntervalUnit intervalUnit, int repeatInterval)
           Create a DailyTimeIntervalTrigger that will occur at the given time, and repeat at the the given interval until the given end time.
DailyTimeIntervalTriggerImpl(String name, String group, Date startTime, Date endTime, TimeOfDay startTimeOfDay, TimeOfDay endTimeOfDay, DateBuilder.IntervalUnit intervalUnit, int repeatInterval)
           Create a DailyTimeIntervalTrigger that will occur at the given time, and repeat at the the given interval until the given end time.
DailyTimeIntervalTriggerImpl(String name, String group, String jobName, String jobGroup, Date startTime, Date endTime, TimeOfDay startTimeOfDay, TimeOfDay endTimeOfDay, DateBuilder.IntervalUnit intervalUnit, int repeatInterval)
           Create a DailyTimeIntervalTrigger that will occur at the given time, fire the identified Job and repeat at the the given interval until the given end time.
DailyTimeIntervalTriggerImpl(String name, String group, TimeOfDay startTimeOfDay, TimeOfDay endTimeOfDay, DateBuilder.IntervalUnit intervalUnit, int repeatInterval)
           Create a DailyTimeIntervalTrigger that will occur immediately, and repeat at the the given interval.
DailyTimeIntervalTriggerImpl(String name, TimeOfDay startTimeOfDay, TimeOfDay endTimeOfDay, DateBuilder.IntervalUnit intervalUnit, int repeatInterval)
           Create a DailyTimeIntervalTrigger that will occur immediately, and repeat at the the given interval.
 



Copyright 2001-2013, Terracotta, Inc.