org.jaxen.expr
Interface BinaryExpr
- Expr, Serializable
- AdditiveExpr, EqualityExpr, LogicalExpr, MultiplicativeExpr, RelationalExpr, UnionExpr
- DefaultAdditiveExpr, DefaultAndExpr, DefaultArithExpr, DefaultBinaryExpr, DefaultDivExpr, DefaultEqualityExpr, DefaultEqualsExpr, DefaultGreaterThanEqualExpr, DefaultGreaterThanExpr, DefaultLessThanEqualExpr, DefaultLessThanExpr, DefaultLogicalExpr, DefaultMinusExpr, DefaultModExpr, DefaultMultiplicativeExpr, DefaultMultiplyExpr, DefaultNotEqualsExpr, DefaultOrExpr, DefaultPlusExpr, DefaultRelationalExpr, DefaultTruthExpr, DefaultUnionExpr
public interface BinaryExpr
Represents a binary expression.
This does not match anything in the XPath 1.0 grammar, but in Jaxen
it includes the usual binary operations such as addition, multiplication,
logical and, logical or, and so forth.
Expr | getLHS() - Returns the left-hand side of the binary expression.
|
String | getOperator() - Returns the operator for the binary expression such as "+" or
"div".
|
Expr | getRHS() - Returns the right-hand side of the binary expression.
|
getLHS
public Expr getLHS()
Returns the left-hand side of the binary expression.
- the left hand side expression
getOperator
public String getOperator()
Returns the operator for the binary expression such as "+" or
"div".
- the operator for the expression
getRHS
public Expr getRHS()
Returns the right-hand side of the binary expression.
- the right-hand side expression