| Modifier and Type | Method and Description |
|---|---|
static CronSpecialChars[] |
ScheduleData.convertToWeekdays(String[] daysOfWeek) |
static CronSpecialChars |
ScheduleData.getDayOfWeek(String dayOfWeek) |
static CronSpecialChars |
ScheduleData.getMonthOfWeek(String month) |
static CronSpecialChars |
ScheduleData.getWeekOfMonth(String monthsWeek) |
| Modifier and Type | Method and Description |
|---|---|
static CronSpecialChars[] |
ScheduleOptionsUtil.convertToWeekdays(String[] daysOfWeek)
This method returns CronSpecialChars[] of days of week.
|
static CronSpecialChars |
ScheduleOptionsUtil.getDayOfWeek(String dayOfWeek)
This method returns CronSpecialChars of a day of week.
|
static CronSpecialChars |
ScheduleOptionsUtil.getMonthOfWeek(String month)
This method returns CronSpecialChars of a month.
|
static CronSpecialChars |
ScheduleOptionsUtil.getWeekOfMonth(String monthsWeek)
This method returns CronSpecialChars of month of week.
|
| Constructor and Description |
|---|
MonthlyWeekDayCronExpression(Date startDate,
Time24HrFmt time,
CronSpecialChars dayOfWeek,
CronSpecialChars weekOfMonth,
Integer frequencyInMonth) |
WeekCronExpression(Date startDate,
Time24HrFmt time,
CronSpecialChars[] weekdays) |
YearMonthDayCronExpression(Date startDate,
Time24HrFmt time,
CronSpecialChars month,
Integer day,
Integer frequencyInYear) |
YearMonthDayOfWeekCronExpression(Date startDate,
Time24HrFmt time,
CronSpecialChars weekOfMonth,
CronSpecialChars dayOfWeek,
CronSpecialChars month,
Integer frequencyInYear) |
| Modifier and Type | Method and Description |
|---|---|
static CronSpecialChars |
CronSpecialChars.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CronSpecialChars[] |
CronSpecialChars.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
List<Date> |
ScheduleService.getScheduledDates(Date startDate,
Date endDate,
Time24HrFmt time,
CronSpecialChars[] weekdays,
ScheduleSequence scheduleSequence)
This method must return schedule dates generated between provided parameters.
|
List<Date> |
ScheduleService.getScheduledDates(Date startDate,
Date endDate,
Time24HrFmt time,
CronSpecialChars weekOfMonth,
CronSpecialChars dayOfWeek,
CronSpecialChars month,
Integer frequencyInYear,
ScheduleSequence scheduleSequence)
This method must return schedule dates generated between provided parameters.
|
List<Date> |
ScheduleService.getScheduledDates(Date startDate,
Date endDate,
Time24HrFmt time,
CronSpecialChars dayOfWeek,
CronSpecialChars weekOfMonth,
Integer frequencyInMonth,
ScheduleSequence scheduleSequence)
This method must return schedule dates generated between provided parameters.
|
List<Date> |
ScheduleService.getScheduledDates(Date startDate,
Date endDate,
Time24HrFmt time,
CronSpecialChars month,
Integer day,
Integer frequencyInYear,
ScheduleSequence scheduleSequence)
This method must return schedule dates generated between provided parameters.
|
| Modifier and Type | Method and Description |
|---|---|
List<Date> |
ScheduleServiceImpl.getScheduledDates(Date startDate,
Date endDate,
Time24HrFmt time,
CronSpecialChars[] weekdays,
ScheduleSequence scheduleSequence)
This overloaded implementation uses WeekCronExpression targeting weekly types of schedule generation.
|
List<Date> |
ScheduleServiceImpl.getScheduledDates(Date startDate,
Date endDate,
Time24HrFmt time,
CronSpecialChars weekOfMonth,
CronSpecialChars dayOfWeek,
CronSpecialChars month,
Integer frequencyInYear,
ScheduleSequence scheduleSequence)
This overloaded implementation uses YearMonthDayCronExpression targeting yearly types of schedule generation.
|
List<Date> |
ScheduleServiceImpl.getScheduledDates(Date startDate,
Date endDate,
Time24HrFmt time,
CronSpecialChars dayOfWeek,
CronSpecialChars weekOfMonth,
Integer frequencyInMonth,
ScheduleSequence scheduleSequence)
This overloaded implementation uses MonthDayCronExpression targeting monthly types of schedule generation.
|
List<Date> |
ScheduleServiceImpl.getScheduledDates(Date startDate,
Date endDate,
Time24HrFmt time,
CronSpecialChars month,
Integer day,
Integer frequencyInYear,
ScheduleSequence scheduleSequence)
This overloaded implementation uses YearMonthDayCronExpression targeting yearly types of schedule generation.
|
Copyright © 2013 The Kuali Foundation. All Rights Reserved.