package caltool.schedule;

/****
 *
 * Class MonthName is one of the twelve standard month of the year.
 *
 * @author Gene Fisher (gfisher@calpoly.edu)
 * @version 15jan10
 *
 */

public enum MonthName {

    /** One of the twelve months of the year */
    January,

    /** One of the twelve months of the year */
    February,

    /** One of the twelve months of the year */
    March,

    /** One of the twelve months of the year */
    April,

    /** One of the twelve months of the year */
    May,

    /** One of the twelve months of the year */
    June,

    /** One of the twelve months of the year */
    July,

    /** One of the twelve months of the year */
    August,

    /** One of the twelve months of the year */
    September,

    /** One of the twelve months of the year */
    October,

    /** One of the twelve months of the year */
    November,

    /** One of the twelve months of the year */
    December

}