org.apache.ws.jaxme.sqls
public interface JoinReference extends SelectTableReference
This interface allows to specify join constraints.
| Method Summary | |
|---|---|
| SelectTableReference | getLeftJoinedTableReference() If this is a left join or a left outer join: Returns the joins left table. |
| CombinedConstraint | getOn() Returns the references ON condition, if any. |
| boolean | isJoin() Returns whether this is a left join, as created by join. |
| boolean | isLeftOuterJoin() Returns whether this is a left outer join, as created by leftOuterJoin. |
If this is a left join or a left outer join: Returns the joins left table.
Returns the references ON condition, if any. The method result is a combined constraint with getType == AND.
Returns whether this is a left join, as created by join.
Returns whether this is a left outer join, as created by leftOuterJoin.