Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
DailyTimeIntervalTriggerImpl.setEndTimeOfDay(TimeOfDay endTimeOfDay) |
void |
DailyTimeIntervalTriggerImpl.setStartTimeOfDay(TimeOfDay startTimeOfDay) |
Constructor and Description |
---|
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-2019, Terracotta, Inc.