Record Class CorrespondenceRecipientService.RecipientBean
java.lang.Object
java.lang.Record
ch.tocco.nice2.optional.correspondence.impl.service.CorrespondenceRecipientService.RecipientBean
- Enclosing class:
CorrespondenceRecipientService
-
Constructor Summary
ConstructorsConstructorDescriptionRecipientBean
(String key, @Nullable String user, @Nullable String address, List<CorrespondenceRecipientService.SourceBean> sources) Creates an instance of aRecipientBean
record class. -
Method Summary
Modifier and TypeMethodDescription@Nullable String
address()
Returns the value of theaddress
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.key()
Returns the value of thekey
record component.sources()
Returns the value of thesources
record component.final String
toString()
Returns a string representation of this record class.@Nullable String
user()
Returns the value of theuser
record component.
-
Constructor Details
-
RecipientBean
public RecipientBean(String key, @Nullable @Nullable String user, @Nullable @Nullable String address, List<CorrespondenceRecipientService.SourceBean> sources) Creates an instance of aRecipientBean
record class.- Parameters:
key
- the value for thekey
record componentuser
- the value for theuser
record componentaddress
- the value for theaddress
record componentsources
- the value for thesources
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)
. -
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-
user
Returns the value of theuser
record component.- Returns:
- the value of the
user
record component
-
address
Returns the value of theaddress
record component.- Returns:
- the value of the
address
record component
-
sources
Returns the value of thesources
record component.- Returns:
- the value of the
sources
record component
-