Record Class QueryPlan.Join
java.lang.Object
java.lang.Record
com.loomcache.server.query.QueryPlan.Join
- Record Components:
joinType- the type of join (INNER, LEFT, RIGHT, CROSS)joinCondition- the join condition predicatejoinTableAlias- the alias for the joined table
- Enclosing class:
QueryPlan
-
Constructor Summary
Constructors -
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 thejoinConditionrecord component.Returns the value of thejoinTableAliasrecord component.joinType()Returns the value of thejoinTyperecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Join
Creates an instance of aJoinrecord class.- Parameters:
joinType- the value for thejoinTyperecord componentjoinCondition- the value for thejoinConditionrecord componentjoinTableAlias- the value for thejoinTableAliasrecord component
-
-
Method Details
-
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). -
joinType
-
joinCondition
Returns the value of thejoinConditionrecord component.- Returns:
- the value of the
joinConditionrecord component
-
joinTableAlias
Returns the value of thejoinTableAliasrecord component.- Returns:
- the value of the
joinTableAliasrecord component
-