public class SqlJoin extends SqlNode
| Constructor | Description |
|---|---|
SqlJoin(SqlNode left,
SqlNode right,
SqlNode condition,
JoinType joinType) |
| Modifier and Type | Method | Description |
|---|---|---|
<R> R |
accept(SqlNodeVisitor<R> visitor) |
See
SqlNodeVisitor |
SqlNode |
getCondition() |
|
JoinType |
getJoinType() |
|
SqlNode |
getLeft() |
|
SqlNode |
getRight() |
|
SqlNodeType |
getType() |
public SqlNode getLeft()
public SqlNode getRight()
public SqlNode getCondition()
public JoinType getJoinType()
public SqlNodeType getType()
public <R> R accept(SqlNodeVisitor<R> visitor) throws AdapterException
SqlNodeSqlNodeVisitoraccept in class SqlNodeR - generic SqlNodeVisitor typevisitor - The visitor object on which the appropriate visit(sqlNode) method is calledAdapterException - can be thrownCopyright © 2019. All rights reserved.