package schedule; /** * There are only a certain number of patterns allowed for * instructors to choose to teach during. This gives the allowed * patterns and helps in showing if instructors have attempted * to violate any of the patterns. **/ public class DayPattern { PATTERN days; String other_pattern; } enum PATTERN {MWF, MW, MF, WF, TR, MTWRF, MTWR}