Uses of Interface
org.jaxen.expr.BinaryExpr
-
Packages that use BinaryExpr Package Description org.jaxen.expr Interfaces and default implementations for XPath expression components. -
-
Uses of BinaryExpr in org.jaxen.expr
Subinterfaces of BinaryExpr in org.jaxen.expr Modifier and Type Interface Description interface
AdditiveExpr
Represents an XPath additive expression.interface
EqualityExpr
Represents an XPath equality expression.interface
LogicalExpr
Represents an XPath logical expression.interface
MultiplicativeExpr
Represents an XPath multiplicative expression.interface
RelationalExpr
Represents an XPath relational expression such ascount(//p) > count(//div)
.interface
UnionExpr
Represents an XPath union expression.Classes in org.jaxen.expr that implement BinaryExpr Modifier and Type Class Description class
DefaultUnionExpr
Deprecated.this class will become non-public in the future; use the interface insteadMethods in org.jaxen.expr that return BinaryExpr Modifier and Type Method Description BinaryExpr
DefaultXPathFactory. createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)
BinaryExpr
XPathFactory. createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)
Returns a new XPath additive expression.BinaryExpr
DefaultXPathFactory. createAndExpr(Expr lhs, Expr rhs)
BinaryExpr
XPathFactory. createAndExpr(Expr lhs, Expr rhs)
Returns a new XPath And expression.BinaryExpr
DefaultXPathFactory. createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)
BinaryExpr
XPathFactory. createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)
Returns a new XPath equality expression.BinaryExpr
DefaultXPathFactory. createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)
BinaryExpr
XPathFactory. createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)
Returns a new XPath multiplicative expression.BinaryExpr
DefaultXPathFactory. createOrExpr(Expr lhs, Expr rhs)
BinaryExpr
XPathFactory. createOrExpr(Expr lhs, Expr rhs)
Returns a new XPath Or expression.BinaryExpr
DefaultXPathFactory. createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)
BinaryExpr
XPathFactory. createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)
Returns a new XPath relational expression.
-