Uses of Interface
org.jaxen.expr.BinaryExpr
Packages that use BinaryExpr
Package
Description
Interfaces and default implementations for
XPath expression components.
-
Uses of BinaryExpr in org.jaxen.expr
Subinterfaces of BinaryExpr in org.jaxen.exprModifier and TypeInterfaceDescriptioninterface
Represents an XPath additive expression.interface
Represents an XPath equality expression.interface
Represents an XPath logical expression.interface
Represents an XPath multiplicative expression.interface
Represents an XPath relational expression such ascount(//p) > count(//div)
.interface
Represents an XPath union expression.Methods in org.jaxen.expr that return BinaryExprModifier and TypeMethodDescriptionDefaultXPathFactory.createAdditiveExpr
(Expr lhs, Expr rhs, int additiveOperator) XPathFactory.createAdditiveExpr
(Expr lhs, Expr rhs, int additiveOperator) Returns a new XPath additive expression.DefaultXPathFactory.createAndExpr
(Expr lhs, Expr rhs) XPathFactory.createAndExpr
(Expr lhs, Expr rhs) Returns a new XPath And expression.DefaultXPathFactory.createEqualityExpr
(Expr lhs, Expr rhs, int equalityOperator) XPathFactory.createEqualityExpr
(Expr lhs, Expr rhs, int equalityOperator) Returns a new XPath equality expression.DefaultXPathFactory.createMultiplicativeExpr
(Expr lhs, Expr rhs, int multiplicativeOperator) XPathFactory.createMultiplicativeExpr
(Expr lhs, Expr rhs, int multiplicativeOperator) Returns a new XPath multiplicative expression.DefaultXPathFactory.createOrExpr
(Expr lhs, Expr rhs) XPathFactory.createOrExpr
(Expr lhs, Expr rhs) Returns a new XPath Or expression.DefaultXPathFactory.createRelationalExpr
(Expr lhs, Expr rhs, int relationalOperator) XPathFactory.createRelationalExpr
(Expr lhs, Expr rhs, int relationalOperator) Returns a new XPath relational expression.