/**
 * A simple enumerated type for the months of the year
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public enum Month
{
   JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, 
   JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER;
}
