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 aJoinConnection
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
final 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 thejoinTable
record component.final String
toString()
Returns a string representation of this record class.Returns the value of theviaJoinName
record component.
-
Constructor Details
-
JoinConnection
-
-
Method Details
-
compareTo
- Specified by:
compareTo
in 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 thejoinTable
record component.- Returns:
- the value of the
joinTable
record component
-
viaJoinName
Returns the value of theviaJoinName
record component.- Returns:
- the value of the
viaJoinName
record component
-