Package com.avoka.tm.vo.v1
Record Class Client
java.lang.Object
java.lang.Record
com.avoka.tm.vo.v1.Client
- Record Components:
clientName
- client nameclientCode
- client code
Client Object Model
- Since:
- 24.10.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theclientCode
record component.Returns the value of theclientName
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.
-
Constructor Details
-
Client
public Client(com.avoka.fc.core.entity.Client client) -
Client
Creates an instance of aClient
record class.- Parameters:
clientName
- the value for theclientName
record componentclientCode
- the value for theclientCode
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)
. -
clientName
Returns the value of theclientName
record component.- Returns:
- the value of the
clientName
record component
-
clientCode
Returns the value of theclientCode
record component.- Returns:
- the value of the
clientCode
record component
-