Package com.exasol.adapter.sql
Class SqlJoin
- java.lang.Object
-
- com.exasol.adapter.sql.SqlNode
-
- com.exasol.adapter.sql.SqlJoin
-
public class SqlJoin extends SqlNode
JOINnode.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(SqlNodeVisitor<R> visitor)SeeSqlNodeVisitorSqlNodegetCondition()Gets condition.JoinTypegetJoinType()Gets join type.SqlNodegetLeft()Gets left table.SqlNodegetRight()Gets right table.SqlNodeTypegetType()Gets 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
-
getType
public SqlNodeType getType()
Description copied from class:SqlNodeGets type.
-
accept
public <R> R accept(SqlNodeVisitor<R> visitor) throws AdapterException
Description copied from class:SqlNodeSeeSqlNodeVisitor- Specified by:
acceptin classSqlNode- Type Parameters:
R- generic SqlNodeVisitor type- Parameters:
visitor- The visitor object on which the appropriate visit(sqlNode) method is called- Returns:
- visited object
- Throws:
AdapterException- can be thrown
-
-