ffbc.Schedules
global with sharing class Schedules
This class provides functionality related to scheduling.
Enums
Frequency
An enum that represents the scheduling frequencies.
Hourly |
The schedule is hourly. |
Daily |
The schedule is daily. |
Weekly |
The schedule is weekly. |
Monthly |
The schedule is monthly. |
DayOfWeek
An enum that represents the days of the week for a schedule.
Monday |
The schedule is for Monday. |
Tuesday |
The schedule is for Tuesday. |
Wednesday |
The schedule is for Wednesday. |
Thursday |
The schedule is for Thursday. |
Friday |
The schedule is for Friday. |
Saturday |
The schedule is for Saturday. |
Sunday |
The schedule is for Sunday. |
MonthlyRecurrenceMode
An enum that represents the types of recurrence for a monthly schedule.
FixedDate |
The schedule is for a fixed date of the month. |
RelativeDate |
The schedule is for a date relative to the start or end of the month. |
MonthlyRelativeDateType
An enum that represents the date types for a relative monthly schedule.
Monday |
The schedule is for a Monday relative to the start or end of the month. |
Tuesday |
The schedule is for a Tuesday relative to the start or end of the month. |
Wednesday |
The schedule is for a Wednesday relative to the start or end of the month. |
Thursday |
The schedule is for a Thursday relative to the start or end of the month. |
Friday |
The schedule is for a Friday relative to the start or end of the month. |
Saturday |
The schedule is for a Saturday relative to the start or end of the month. |
Sunday |
The schedule is for a Sunday relative to the start or end of the month. |
Weekday |
Deprecated. This value is no longer supported and causes errors if used. |
MonthlyRelativeDateOrdinal
An enum that represents the occurrences of a relative date type for a monthly schedule.
First |
The first occurrence of the relative date type in the month. |
Second |
The second occurrence of the relative date type in the month. |
Third |
The third occurrence of the relative date type in the month. |
Last |
The last occurrence of the relative date type in the month. |
|