Uses of Interface
org.jaxen.expr.BinaryExpr

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
 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 XPathFactory.createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)
          Returns a new XPath additive expression.
 BinaryExpr DefaultXPathFactory.createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)
           
 BinaryExpr XPathFactory.createAndExpr(Expr lhs, Expr rhs)
          Returns a new XPath And expression.
 BinaryExpr DefaultXPathFactory.createAndExpr(Expr lhs, Expr rhs)
           
 BinaryExpr XPathFactory.createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)
          Returns a new XPath equality expression.
 BinaryExpr DefaultXPathFactory.createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)
           
 BinaryExpr XPathFactory.createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)
          Returns a new XPath multiplicative expression.
 BinaryExpr DefaultXPathFactory.createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)
           
 BinaryExpr XPathFactory.createOrExpr(Expr lhs, Expr rhs)
          Returns a new XPath Or expression.
 BinaryExpr DefaultXPathFactory.createOrExpr(Expr lhs, Expr rhs)
           
 BinaryExpr XPathFactory.createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)
          Returns a new XPath relational expression.
 BinaryExpr DefaultXPathFactory.createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)
           
 



Copyright © 2001-2007 Codehaus. All Rights Reserved.