org.exolab.adaptx.xpath.expressions
Interface BinaryExpr
- XPathExpression
- EqualityExpr
public interface BinaryExpr
Represents a simple binary expression. A binary expression is
any expression which has a left hand side and a right hand side.
BOOLEAN, ERROR, FILTER_EXPR, LOCATION_PATH, NODE_TEST, NUMBER, PATH_EXPR, PRIMARY, STEP, STRING, UNION_EXPR |
getLeftSide
public XPathExpression getLeftSide()
Returns the Expr that should be evaluated as the left hand side
of this BinaryExpr
- the Expr that should be evaluated as the left hand side
of this BinaryExpr
getOperator
public Operator getOperator()
Returns the operator for this binary expression
- the operator for this binary expression
getRightSide
public XPathExpression getRightSide()
Returns the Expr that should be evaluated as the right hand side
of this BinaryExpr
- the Expr that should be evaluated as the right hand side
of this BinaryExpr