Module org.neo4j.cypherdsl.core
Record Class Configuration.RelationshipDefinition
java.lang.Object
java.lang.Record
org.neo4j.cypherdsl.core.renderer.Configuration.RelationshipDefinition
- Record Components:
sourceLabel- The source labeltype- The type of the relationshiptargetLabel- The target label
- Enclosing class:
- Configuration
public static record Configuration.RelationshipDefinition(String sourceLabel, String type, String targetLabel)
extends Record
Simple definition of a known / schema relationship.
-
Constructor Summary
ConstructorsConstructorDescriptionRelationshipDefinition(String sourceLabel, String type, String targetLabel) Will make sure all parameters are trimmed. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thesourceLabelrecord component.Returns the value of thetargetLabelrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
RelationshipDefinition
Will make sure all parameters are trimmed.- Parameters:
sourceLabel- The source labeltype- The type of the relationshiptargetLabel- The target label
-
-
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). -
sourceLabel
Returns the value of thesourceLabelrecord component.- Returns:
- the value of the
sourceLabelrecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
targetLabel
Returns the value of thetargetLabelrecord component.- Returns:
- the value of the
targetLabelrecord component
-