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
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(SqlNodeVisitor<R> visitor)SeeSqlNodeVisitorSqlNodegetCondition()JoinTypegetJoinType()SqlNodegetLeft()SqlNodegetRight()SqlNodeTypegetType()
-
-
-
Method Detail
-
getLeft
public SqlNode getLeft()
- Returns:
- the left
-
getRight
public SqlNode getRight()
- Returns:
- the right
-
getCondition
public SqlNode getCondition()
- Returns:
- the condition
-
getJoinType
public JoinType getJoinType()
- Returns:
- the joinType
-
getType
public SqlNodeType getType()
-
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
-
-