Record Class ContainmentInfo
java.lang.Object
java.lang.Record
tools.refinery.store.reasoning.translator.containment.ContainmentInfo
public record ContainmentInfo(PartialRelation sourceType, Multiplicity multiplicity, PartialRelation targetType, Set<PartialRelation> supersets, Set<PartialRelation> oppositeSupersets)
extends Record
-
Constructor Summary
ConstructorDescriptionContainmentInfo
(PartialRelation sourceType, Multiplicity multiplicity, PartialRelation targetType, Set<PartialRelation> supersets, Set<PartialRelation> oppositeSupersets) Creates an instance of aContainmentInfo
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.Returns the value of themultiplicity
record component.Returns the value of theoppositeSupersets
record component.Returns the value of thesourceType
record component.Returns the value of thesupersets
record component.Returns the value of thetargetType
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ContainmentInfo
public ContainmentInfo(PartialRelation sourceType, Multiplicity multiplicity, PartialRelation targetType, Set<PartialRelation> supersets, Set<PartialRelation> oppositeSupersets) Creates an instance of aContainmentInfo
record class.- Parameters:
sourceType
- the value for thesourceType
record componentmultiplicity
- the value for themultiplicity
record componenttargetType
- the value for thetargetType
record componentsupersets
- the value for thesupersets
record componentoppositeSupersets
- the value for theoppositeSupersets
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)
. -
sourceType
Returns the value of thesourceType
record component.- Returns:
- the value of the
sourceType
record component
-
multiplicity
Returns the value of themultiplicity
record component.- Returns:
- the value of the
multiplicity
record component
-
targetType
Returns the value of thetargetType
record component.- Returns:
- the value of the
targetType
record component
-
supersets
Returns the value of thesupersets
record component.- Returns:
- the value of the
supersets
record component
-
oppositeSupersets
Returns the value of theoppositeSupersets
record component.- Returns:
- the value of the
oppositeSupersets
record component
-