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, boolean decide, Set<PartialRelation> supersets, Set<PartialRelation> oppositeSupersets)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionContainmentInfo(PartialRelation sourceType, Multiplicity multiplicity, PartialRelation targetType) ContainmentInfo(PartialRelation sourceType, Multiplicity multiplicity, PartialRelation targetType, boolean decide, Set<PartialRelation> supersets, Set<PartialRelation> oppositeSupersets) Creates an instance of aContainmentInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleandecide()Returns the value of thedeciderecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of themultiplicityrecord component.Returns the value of theoppositeSupersetsrecord component.Returns the value of thesourceTyperecord component.Returns the value of thesupersetsrecord component.Returns the value of thetargetTyperecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ContainmentInfo
public ContainmentInfo(PartialRelation sourceType, Multiplicity multiplicity, PartialRelation targetType, boolean decide, Set<PartialRelation> supersets, Set<PartialRelation> oppositeSupersets) Creates an instance of aContainmentInforecord class.- Parameters:
sourceType- the value for thesourceTyperecord componentmultiplicity- the value for themultiplicityrecord componenttargetType- the value for thetargetTyperecord componentdecide- the value for thedeciderecord componentsupersets- the value for thesupersetsrecord componentoppositeSupersets- the value for theoppositeSupersetsrecord component
-
ContainmentInfo
public ContainmentInfo(PartialRelation sourceType, Multiplicity multiplicity, PartialRelation targetType)
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
sourceType
Returns the value of thesourceTyperecord component.- Returns:
- the value of the
sourceTyperecord component
-
multiplicity
Returns the value of themultiplicityrecord component.- Returns:
- the value of the
multiplicityrecord component
-
targetType
Returns the value of thetargetTyperecord component.- Returns:
- the value of the
targetTyperecord component
-
decide
public boolean decide()Returns the value of thedeciderecord component.- Returns:
- the value of the
deciderecord component
-
supersets
Returns the value of thesupersetsrecord component.- Returns:
- the value of the
supersetsrecord component
-
oppositeSupersets
Returns the value of theoppositeSupersetsrecord component.- Returns:
- the value of the
oppositeSupersetsrecord component
-