Package org.jaxen.expr
Interface RelationalExpr
-
- All Superinterfaces:
BinaryExpr
,Expr
,java.io.Serializable
public interface RelationalExpr extends BinaryExpr
Represents an XPath relational expression such ascount(//p) > count(//div)
. This is production 24 in the XPath 1.0 specification:[24] RelationalExpr ::= AdditiveExpr | RelationalExpr '<' AdditiveExpr | RelationalExpr '>' AdditiveExpr | RelationalExpr '<=' AdditiveExpr | RelationalExpr '>=' AdditiveExpr v *
-
-
Method Summary
-
Methods inherited from interface org.jaxen.expr.BinaryExpr
getLHS, getOperator, getRHS
-
-