package caltool.schedule;

/****
 *
 * Reminders can come minutes, hours, or days before the start time of a
 * scheduled item.
 *
 */

public enum ReminderTimeUnit  {

    /**Indicates that a reminder occurs a specified number of minutes before a
        scheduled item. */
    MinutesBefore,

    /**Indicates that a reminder occurs a specified number of hours before a
        scheduled item. */
    HoursBefore,

    /**Indicates that a reminder occurs a specified number of days before a
        scheduled item. */
    DaysBefore

}