Package org.bookstore.payment.dto
Record Class Payment
java.lang.Object
java.lang.Record
org.bookstore.payment.dto.Payment
public record Payment(LocalDateTime date, BigDecimal amount, String creditCardNumber, String transactionId)
extends Record
-
Constructor Summary
ConstructorDescriptionPayment
(LocalDateTime date, BigDecimal amount, String creditCardNumber, String transactionId) Creates an instance of aPayment
record class. -
Method Summary
Modifier and TypeMethodDescriptionamount()
Returns the value of theamount
record component.Returns the value of thecreditCardNumber
record component.date()
Returns the value of thedate
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.Returns the value of thetransactionId
record component.
-
Constructor Details
-
Payment
public Payment(LocalDateTime date, BigDecimal amount, String creditCardNumber, String transactionId) Creates an instance of aPayment
record class.- Parameters:
date
- the value for thedate
record componentamount
- the value for theamount
record componentcreditCardNumber
- the value for thecreditCardNumber
record componenttransactionId
- the value for thetransactionId
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
date
Returns the value of thedate
record component.- Returns:
- the value of the
date
record component
-
amount
Returns the value of theamount
record component.- Returns:
- the value of the
amount
record component
-
creditCardNumber
Returns the value of thecreditCardNumber
record component.- Returns:
- the value of the
creditCardNumber
record component
-
transactionId
Returns the value of thetransactionId
record component.- Returns:
- the value of the
transactionId
record component
-