package schedule; /** * A Type object is an indicator for a course in a schedule as to whether * it's the lecture of lab portion of the course. * **/ public class Type { CourseType type; } enum CourseType {LECTURE, LAB, DISCUSSION, SEMINAR}