public class SemesterUtilities
{

    public static String startingMonth( int semester)
    {
       String      month;
       month = "N/A";  // prevents compiler errors		 
		        if (semester == Sessions.SPRING.ordinal())
				   { 
					 month = "January";
					 }
		         else if  (semester == Sessions.SUMMER.ordinal())
					{
					 month = "May";
					 }
				   else if (semester == Sessions.FALL.ordinal())
					{ 
					month = "August";
					}
       return month;       
    }



}
