| javax.jcr.query.qom.EquiJoinCondition
EquiJoinCondition | public interface EquiJoinCondition extends JoinCondition(Code) | | Tests whether the value of a property in a first selector is equal to the
value of a property in a second selector.
A node-tuple satisfies the constraint only if:
The query is invalid if:
since: JCR 2.0 |
getProperty1Name | public String getProperty1Name()(Code) | | Gets the property name in the first selector.
the property name; non-null |
getProperty2Name | public String getProperty2Name()(Code) | | Gets the property name in the second selector.
the property name; non-null |
getSelector1Name | public String getSelector1Name()(Code) | | Gets the name of the first selector.
the selector name; non-null |
getSelector2Name | public String getSelector2Name()(Code) | | Gets the name of the second selector.
the selector name; non-null |
|
|