|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BinaryExpr | |
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 | |
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 as count(//p) > count(//div) . |
interface |
UnionExpr
Represents an XPath union expression. |
Classes in org.jaxen.expr that implement BinaryExpr | |
(package private) class |
org.jaxen.expr.DefaultBinaryExpr
|
class |
DefaultUnionExpr
Deprecated. this class will become non-public in the future; use the interface instead |
Methods in org.jaxen.expr that return BinaryExpr | |
BinaryExpr |
DefaultXPathFactory.createOrExpr(Expr lhs,
Expr rhs)
|
BinaryExpr |
DefaultXPathFactory.createAndExpr(Expr lhs,
Expr rhs)
|
BinaryExpr |
DefaultXPathFactory.createEqualityExpr(Expr lhs,
Expr rhs,
int equalityOperator)
|
BinaryExpr |
DefaultXPathFactory.createRelationalExpr(Expr lhs,
Expr rhs,
int relationalOperator)
|
BinaryExpr |
DefaultXPathFactory.createAdditiveExpr(Expr lhs,
Expr rhs,
int additiveOperator)
|
BinaryExpr |
DefaultXPathFactory.createMultiplicativeExpr(Expr lhs,
Expr rhs,
int multiplicativeOperator)
|
BinaryExpr |
XPathFactory.createOrExpr(Expr lhs,
Expr rhs)
Returns a new XPath Or expression. |
BinaryExpr |
XPathFactory.createAndExpr(Expr lhs,
Expr rhs)
Returns a new XPath And expression. |
BinaryExpr |
XPathFactory.createEqualityExpr(Expr lhs,
Expr rhs,
int equalityOperator)
Returns a new XPath equality expression. |
BinaryExpr |
XPathFactory.createRelationalExpr(Expr lhs,
Expr rhs,
int relationalOperator)
Returns a new XPath relational expression. |
BinaryExpr |
XPathFactory.createAdditiveExpr(Expr lhs,
Expr rhs,
int additiveOperator)
Returns a new XPath additive expression. |
BinaryExpr |
XPathFactory.createMultiplicativeExpr(Expr lhs,
Expr rhs,
int multiplicativeOperator)
Returns a new XPath multiplicative expression. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |