Uses of Class
cz.cuni.kubinja.hospitalsystem.personnel.Doctor
Packages that use Doctor
Package
Description
Interactive hospital managing system using SQLite database and with command line user interface.
Provides classes managing calendar and planing of appointments.
Package contains classes providing interface for easy communication between
hospital system and SQLite database.
-
Uses of Doctor in cz.cuni.kubinja.hospitalsystem
Methods in cz.cuni.kubinja.hospitalsystem that return types with arguments of type DoctorModifier and TypeMethodDescriptionHospital.addDoctor(DoctorData doctorData) Adds new doctor into the system.Hospital.allDoctors()Returns list of information about every doctor in the system.Hospital.getAllDoctorsWithName(String firstName, String lastName) Returns list of doctors with provided first name and last name.Hospital.getDoctor(int id) Returns object representing doctor with provided id.Methods in cz.cuni.kubinja.hospitalsystem with parameters of type DoctorModifier and TypeMethodDescriptionHospital.updateDoctor(Doctor doctor) Updates information about doctor with provided id and based on provided new data. -
Uses of Doctor in cz.cuni.kubinja.hospitalsystem.calendar
Constructors in cz.cuni.kubinja.hospitalsystem.calendar with parameters of type DoctorModifierConstructorDescriptionAppointment(int id, Patient patient, Doctor doctor, LocalDateTime startTime, LocalDateTime endTime) Creates new appointment. -
Uses of Doctor in cz.cuni.kubinja.hospitalsystem.database
Methods in cz.cuni.kubinja.hospitalsystem.database that return DoctorModifier and TypeMethodDescriptionDatabase.addDoctor(DoctorData doctorData) Adds doctor into the database.Database.getDoctor(int id) Returns Doctor with corresponding id.Database.getDoctor(Connection connection, int id) Returns Doctor with corresponding id.Methods in cz.cuni.kubinja.hospitalsystem.database that return types with arguments of type DoctorModifier and TypeMethodDescriptionDatabase.getAllDoctors()Returns list of all doctors in the database.Methods in cz.cuni.kubinja.hospitalsystem.database with parameters of type DoctorModifier and TypeMethodDescriptionvoidDatabase.updateDoctor(Doctor doctor) Updates doctor information inside the database.