Question: OfficeHourSchedule class: public class OfficeHourSchedule { private ArrayList officeHours; /** * Constructor for objects of class OfficeHourSchedule */ public OfficeHourSchedule() { officeHours = new ArrayList();

 OfficeHourSchedule class: public class OfficeHourSchedule { private ArrayList officeHours; /** *

OfficeHourSchedule class:

public class OfficeHourSchedule { private ArrayList officeHours;

/** * Constructor for objects of class OfficeHourSchedule */ public OfficeHourSchedule() { officeHours = new ArrayList(); addOfficeHoursFromFile("office.csv"); } /** * Prints names of instructors who have office hours on the given day * @param day The day of the week. */ public void printIsInOn(String day) { // put your code here } /** * Checks if instructor is available during the week for at least the given time * @param instructor The name of the instructor * @param minutes The time threashold * @return TRUE if instructor is available for the given threashold; otherwise FALSE */ public boolean isAvailableFor(String instructor, int minutes) { // put your code here return true; } /** * Add the office hours recorded in the given filename to the schedule. * @param filename A CSV file of OfficeHour records. */ private void addOfficeHoursFromFile(String filename) { OfficeHourReader reader = new OfficeHourReader(); officeHours.addAll(reader.getOfficeHours(filename)); }

/** * Prints for all office hours the corresponding info */ public void printAllOfficeHours() { for (OfficeHour officeh : officeHours) { officeh.printInfo(); System.out.println(); } } }

OfficeHour class:

public class OfficeHour { private String instructor; private String dayOfWeek; private int startTimeHours; private int startTimeMinutes; private int durationInMinutes; private String campus; private String office; private String course; // Ignore these two declarations private String minutesString; private String hoursString;

/** * Constructor for objects of class OfficeHour */ public OfficeHour(String instructor, String day, int startTimeH, int startTimeM, int duration, String campus, String office, String course) { this.instructor = instructor; dayOfWeek = day; startTimeHours = startTimeH; startTimeMinutes = startTimeM; durationInMinutes = duration; this.campus = campus; this.office = office; this.course = course; //ignore this part minutesString = startTimeM == 0 ? "00" : "" + startTimeM; hoursString = startTimeH

Use Lambda, Streams, filter, maps and reduce only!!!

In the class Office Hour Schedule, implement the following methods (documentation for each method is provided in the code). a) printisinOn(String day) b) isAvailableFor(String instructor, int minutes) Add a method (call it findinstructorsOnAfter) to Office HourSchedule that takes two parameters - campus and hour -- and returns a String containing the names of all instructors who offer an office hour on given campus that starts not before hour. You should exclude duplicate names (if an instructor offers multiple office hours). The string should start with "Instructors who are available on campus after hour.00 are: In the class Office Hour Schedule, implement the following methods (documentation for each method is provided in the code). a) printisinOn(String day) b) isAvailableFor(String instructor, int minutes) Add a method (call it findinstructorsOnAfter) to Office HourSchedule that takes two parameters - campus and hour -- and returns a String containing the names of all instructors who offer an office hour on given campus that starts not before hour. You should exclude duplicate names (if an instructor offers multiple office hours). The string should start with "Instructors who are available on campus after hour.00 are

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!