Package javax.jcr.query.qom
Interface ChildNodeJoinCondition
-
- All Superinterfaces:
JoinCondition
- All Known Implementing Classes:
ChildNodeJoinConditionImpl
public interface ChildNodeJoinCondition extends JoinCondition
Tests whether thechildSelector
node is a child of theparentSelector
node. A node-tuple satisfies the constraint only if:childSelectorNode.getParent().isSame(parentSelectorNode)
would return true, wherechildSelectorNode
is the node forchildSelector
andparentSelectorNode
is the node forparentSelector
.- Since:
- JCR 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getChildSelectorName()
Gets the name of the child selector.java.lang.String
getParentSelectorName()
Gets the name of the parent selector.
-