| javax.jcr.query.qom.Join
Join | public interface Join extends Source(Code) | | Performs a join between two node-tuple sources.
The query is invalid if
Join.getLeft left is the same source as
Join.getRight right .
since: JCR 2.0 |
getJoinCondition | public JoinCondition getJoinCondition()(Code) | | Gets the join condition.
the join condition; non-null |
getJoinType | public int getJoinType()(Code) | | Gets the join type.
either |
getLeft | public Source getLeft()(Code) | | Gets the left node-tuple source.
the left source; non-null |
getRight | public Source getRight()(Code) | | Gets the right node-tuple source.
the right source; non-null |
|
|