Record Class JoinGraph.JoinConnection
java.lang.Object
java.lang.Record
com.kingsrook.qqq.backend.core.actions.metadata.JoinGraph.JoinConnection
- All Implemented Interfaces:
Comparable<JoinGraph.JoinConnection>
- Enclosing class:
JoinGraph
public static record JoinGraph.JoinConnection(String joinTable, String viaJoinName)
extends Record
implements Comparable<JoinGraph.JoinConnection>
-
Constructor Summary
ConstructorsConstructorDescriptionJoinConnection(String joinTable, String viaJoinName) Creates an instance of aJoinConnectionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thejoinTablerecord component.final StringtoString()Returns a string representation of this record class.Returns the value of theviaJoinNamerecord component.
-
Constructor Details
-
JoinConnection
-
-
Method Details
-
compareTo
- Specified by:
compareToin interfaceComparable<JoinGraph.JoinConnection>
-
toString
-
hashCode
-
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). -
joinTable
Returns the value of thejoinTablerecord component.- Returns:
- the value of the
joinTablerecord component
-
viaJoinName
Returns the value of theviaJoinNamerecord component.- Returns:
- the value of the
viaJoinNamerecord component
-