Record Class TermsConditionConfirmationSourceService.TermsConditionConfirmationSource
java.lang.Object
java.lang.Record
ch.tocco.nice2.userbase.api.terms.TermsConditionConfirmationSourceService.TermsConditionConfirmationSource
- Enclosing class:
TermsConditionConfirmationSourceService
-
Constructor Summary
ConstructorDescriptionTermsConditionConfirmationSource
(String sourceModel, String targetRelation) TermsConditionConfirmationSource
(String sourceModel, String targetRelation, @Nullable String intermediateRelation) Creates an instance of aTermsConditionConfirmationSource
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@Nullable String
Returns the value of theintermediateRelation
record component.Returns the value of thesourceModel
record component.Returns the value of thetargetRelation
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
TermsConditionConfirmationSource
-
TermsConditionConfirmationSource
public TermsConditionConfirmationSource(String sourceModel, String targetRelation, @Nullable @Nullable String intermediateRelation) Creates an instance of aTermsConditionConfirmationSource
record class.- Parameters:
sourceModel
- the value for thesourceModel
record componenttargetRelation
- the value for thetargetRelation
record componentintermediateRelation
- the value for theintermediateRelation
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)
. -
sourceModel
Returns the value of thesourceModel
record component.- Returns:
- the value of the
sourceModel
record component
-
targetRelation
Returns the value of thetargetRelation
record component.- Returns:
- the value of the
targetRelation
record component
-
intermediateRelation
Returns the value of theintermediateRelation
record component.- Returns:
- the value of the
intermediateRelation
record component
-