jd.xml.xpath.expr.operator
Class BooleanOperator
java.lang.Object
jd.xml.xpath.expr.ExpressionImpl
jd.xml.xpath.expr.BooleanExpression
jd.xml.xpath.expr.operator.BooleanOperator
- All Implemented Interfaces:
- Expression, Operator
- Direct Known Subclasses:
- And, Equals, Or, Relate
- public abstract class BooleanOperator
- extends BooleanExpression
- implements Operator
BooleanOperator is a base class for operators that operate on booleans.
Method Summary |
int |
getContextDependencies()
Return a bitfield indicating the expression dependencies
on the XPath context. |
Methods inherited from interface jd.xml.xpath.expr.Expression |
accept, getResultType, hasContextDependencies, isUniqueFilter, matchesFilter, toBooleanValue, toNode, toNodeSet, toNumberValue, toString, toStringValue, toXObject |
lhs_
protected final Expression lhs_
rhs_
protected final Expression rhs_
BooleanOperator
public BooleanOperator(Expression lhs,
Expression rhs)
- Create a BooleanOperator.
getContextDependencies
public int getContextDependencies()
- Description copied from interface:
Expression
- Return a bitfield indicating the expression dependencies
on the XPath context.
- Specified by:
getContextDependencies
in interface Expression