Package customer
Class PlatinumCustomer
java.lang.Object
customer.Customer
customer.PlatinumCustomer
- All Implemented Interfaces:
IGiveBetList
Represents a Platinum-level customer, a specialized type of
Customer with the highest betting limits.
The PlatinumCustomer class is a final extension of the Customer class, and is constructed
with the CustomerType.PLATINUM type, which assigns it the highest betting limit as defined in CustomerType.
-
Constructor Summary
ConstructorsConstructorDescriptionPlatinumCustomer(String fullName) Constructs a new Platinum-level customer with the specified full name. -
Method Summary
Methods inherited from class customer.Customer
addCustomerBet, getCustomerBetList, getMaxStake, increaseTotalGains, increaseTotalSpent, toString
-
Constructor Details
-
PlatinumCustomer
Constructs a new Platinum-level customer with the specified full name.- Parameters:
fullName- The full name of the Platinum customer.
-