Uses of Class
cz.cuni.kubinja.hospitalsystem.personnel.Patient
Packages that use Patient
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 Patient in cz.cuni.kubinja.hospitalsystem
Methods in cz.cuni.kubinja.hospitalsystem that return types with arguments of type PatientModifier and TypeMethodDescriptionHospital.addPatient(PatientData patientData) Adds new patient into hospital system.Hospital.allPatients()Returns list of information about every patient in the system.Hospital.getAllPatientWithName(String firstName, String lastName) Returns list of patients with the provided first name and last name.Hospital.getPatient(int id) Returns info about patient with provided id.Methods in cz.cuni.kubinja.hospitalsystem with parameters of type PatientModifier and TypeMethodDescriptionHospital.updatePatient(Patient patient) Updates information about patient with provided id and based on provided new data. -
Uses of Patient in cz.cuni.kubinja.hospitalsystem.calendar
Constructors in cz.cuni.kubinja.hospitalsystem.calendar with parameters of type PatientModifierConstructorDescriptionAppointment(int id, Patient patient, Doctor doctor, LocalDateTime startTime, LocalDateTime endTime) Creates new appointment. -
Uses of Patient in cz.cuni.kubinja.hospitalsystem.database
Methods in cz.cuni.kubinja.hospitalsystem.database that return PatientModifier and TypeMethodDescriptionDatabase.addPatient(PatientData patientData) Adds patients into the database.Database.getPatient(int id) Returns patient based on provided id.Database.getPatient(Connection connection, int id) Returns patient based on provided id.Methods in cz.cuni.kubinja.hospitalsystem.database that return types with arguments of type PatientModifier and TypeMethodDescriptionDatabase.getAllPatients()Returns all patients in the database.Methods in cz.cuni.kubinja.hospitalsystem.database with parameters of type PatientModifier and TypeMethodDescriptionvoidDatabase.updatePatient(Patient patient) Updates patient data inside the database.