- compareTo(CourseTime) - Method in class CourseTime
-
Compare this CourseTime to another CourseTime
(required by Comparable).
- CourseSchedule - Class in <Unnamed>
-
An immutable encapsulation of the times at which the courses at an
educational institution can be scheduled.
- CourseSchedule(int, int, int, int, int) - Constructor for class CourseSchedule
-
Construct a CourseSchedule.
- CourseTime - Class in <Unnamed>
-
An immutable encapsulation of a time (period) for a scheduled
course at an educational institution.
- CourseTime(CourseSchedule) - Constructor for class CourseTime
-
Construct the first valid CourseTime based on the given
CourseSchedule.
- CourseTime(int, int, CourseSchedule) - Constructor for class CourseTime
-
Construct a valid CourseTime (based on the given CourseSchedule)
that occurs on (if possible) or in the first "slot" after
the given time.
- CourseTime(CourseTime) - Constructor for class CourseTime
-
Copy Constructor.
- createLaterCourseTime(CourseTime, int) - Static method in class CourseTime
-
Construct a CourseTime that is the given number of minutes after
a given CourseTime.