Uses of Class
com.example.model.TimeInterval

Packages that use TimeInterval
com.example.model   
 

Uses of TimeInterval in com.example.model
 

Methods in com.example.model with parameters of type TimeInterval
 void Schedule.addBusyTimesToList(TimeInterval interval, java.util.List<TimeInterval> dayList)
          Adds a busy time TimeInterval to a list of intervals for a particular day.
 void Schedule.addFreeTimesToList(TimeInterval interval, java.util.List<TimeInterval> dayList)
          Adds a free time TimeInterval to a list of intervals for a particular day.
 boolean TimeInterval.isAfter(TimeInterval times)
          Checks if a particular time interval occurs completely after this interval.
 boolean TimeInterval.isBefore(TimeInterval times)
          Checks if a particular time interval occurs completely before this interval.
 boolean TimeInterval.isDuring(TimeInterval times)
          Checks if a particular time interval occurs completely during this interval.
 boolean TimeInterval.isEndOut(TimeInterval times)
          Checks if a particular time interval ends after this interval but starts during it.
 boolean TimeInterval.isStartOut(TimeInterval times)
          Checks if a particular time interval starts before this interval but ends during it.
 

Method parameters in com.example.model with type arguments of type TimeInterval
 void Schedule.addBusyTimesToList(TimeInterval interval, java.util.List<TimeInterval> dayList)
          Adds a busy time TimeInterval to a list of intervals for a particular day.
 void Schedule.addFreeTimesToList(TimeInterval interval, java.util.List<TimeInterval> dayList)
          Adds a free time TimeInterval to a list of intervals for a particular day.
 java.lang.String Schedule.combine(java.util.List<TimeInterval> dayList, char day)
          Takes a list of intervals for a particular day, the character symbol for that day, and combines the free times in that list into a string which gets returned.