Uses of Enum
com.ntu.fdae.group1.bto.enums.MaritalStatus
Packages that use MaritalStatus
Package
Description
-
Uses of MaritalStatus in com.ntu.fdae.group1.bto.controllers.user
Methods in com.ntu.fdae.group1.bto.controllers.user with parameters of type MaritalStatusModifier and TypeMethodDescriptionboolean
AuthenticationController.registerApplicant
(String nric, String name, int age, MaritalStatus maritalStatus) Registers a new applicant -
Uses of MaritalStatus in com.ntu.fdae.group1.bto.enums
Methods in com.ntu.fdae.group1.bto.enums that return MaritalStatusModifier and TypeMethodDescriptionstatic MaritalStatus
Returns the enum constant of this type with the specified name.static MaritalStatus[]
MaritalStatus.values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of MaritalStatus in com.ntu.fdae.group1.bto.models.booking
Methods in com.ntu.fdae.group1.bto.models.booking that return MaritalStatusModifier and TypeMethodDescriptionBookingReceiptInfo.getApplicantMaritalStatus()
Gets the marital status of the applicant.Constructors in com.ntu.fdae.group1.bto.models.booking with parameters of type MaritalStatusModifierConstructorDescriptionBookingReceiptInfo
(String applicantName, String applicantNric, int applicantAge, MaritalStatus applicantMaritalStatus, String bookedFlatType, String projectName, String projectNeighborhood, String bookingId, LocalDate bookingDate) Constructor for BookingReceiptInfo. -
Uses of MaritalStatus in com.ntu.fdae.group1.bto.models.user
Methods in com.ntu.fdae.group1.bto.models.user that return MaritalStatusConstructors in com.ntu.fdae.group1.bto.models.user with parameters of type MaritalStatusModifierConstructorDescriptionApplicant
(String nric, String passwordHash, String name, int age, MaritalStatus maritalStatus) Constructs a new Applicant with the specified details.HDBManager
(String nric, String passwordHash, String name, int age, MaritalStatus maritalStatus) Constructs a new HDB Manager with the specified details.HDBOfficer
(String nric, String passwordHash, String name, int age, MaritalStatus maritalStatus) Constructs a new HDB Officer with the specified details.HDBStaff
(String nric, String passwordHash, String name, int age, MaritalStatus maritalStatus) Constructs a new HDB staff member with the specified details.User
(String nric, String passwordHash, String name, int age, MaritalStatus maritalStatus) Constructs a new User with the specified details. -
Uses of MaritalStatus in com.ntu.fdae.group1.bto.services.user
Methods in com.ntu.fdae.group1.bto.services.user with parameters of type MaritalStatusModifier and TypeMethodDescriptionboolean
AuthenticationService.registerApplicant
(String nric, String name, int age, MaritalStatus maritalStatus) Registers a new applicant user using default password.boolean
IAuthenticationService.registerApplicant
(String nric, String name, int age, MaritalStatus maritalStatus) Registers a new Applicant user.