package caltool.schedule;

/****
 *
 * Class DayName is one of the seven standard days of the week.
 *
 * @author Gene Fisher (gfisher@calpoly.edu)
 * @version 25jan10
 *
 */

public enum DayName  {
    /** One of the seven days of the week */
    Sunday,

    /** One of the seven days of the week */
    Monday,

    /** One of the seven days of the week */
    Tuesday,

    /** One of the seven days of the week */
    Wednesday,

    /** One of the seven days of the week */
    Thursday,

    /** One of the seven days of the week */
    Friday,

    /** One of the seven days of the week */
    Saturday
}