public class SemesterUtilities
{

  public static String startingMonth (Session semester)
  {
     String month;
	  
	/*  if (semester == Session.SPRING) month = "january";
	  else if (semester == Session.SUMMER) month = "may";
	  else if (semester == Session.FALL) month = "august";
	  else month = "Invalid, this session is not recognized";
	*/
	  if (semester.equals(Session.SPRING)) month = "january";
	  else if (semester.equals(Session.SUMMER)) month = "may";
	  else if (semester.equals(Session.FALL)) month = "august";
	  else month = "Invalid, this session is not recognized";
	
	
	  
	  return month;
	}
}