Class SqlJoin


  • public class SqlJoin
    extends SqlNode
    JOIN node.
    • Constructor Detail

      • SqlJoin

        public SqlJoin​(SqlNode left,
                       SqlNode right,
                       SqlNode condition,
                       JoinType joinType)
        Instantiates a new Sql join.
        Parameters:
        left - the left table
        right - the right table
        condition - the join condition
        joinType - the join type
    • Method Detail

      • getLeft

        public SqlNode getLeft()
        Gets left table.
        Returns:
        the left
      • getRight

        public SqlNode getRight()
        Gets right table.
        Returns:
        the right
      • getCondition

        public SqlNode getCondition()
        Gets condition.
        Returns:
        the condition
      • getJoinType

        public JoinType getJoinType()
        Gets join type.
        Returns:
        the joinType