Uses of Interface
org.jaxen.expr.Expr

Packages that use Expr
org.jaxen This package defines the core Jaxen API to the XPath engine. 
org.jaxen.expr Interfaces and default implementations for XPath expression components. 
org.jaxen.pattern Defines XSLT Pattern objects. 
 

Uses of Expr in org.jaxen
 

Methods in org.jaxen that return Expr
 Expr BaseXPath.getRootExpr()
          Retrieve the root expression of the internal compiled form of this XPath expression.
 

Uses of Expr in org.jaxen.expr
 

Subinterfaces of Expr in org.jaxen.expr
 interface AdditiveExpr
          Represents an XPath additive expression.
 interface BinaryExpr
          Represents a binary expression.
 interface EqualityExpr
          Represents an XPath equality expression.
 interface FilterExpr
          Represents an XPath filter expression.
 interface FunctionCallExpr
          Represents an XPath function call expression.
 interface LiteralExpr
          Represents an XPath string literal.
 interface LocationPath
          Represents an XPath location path such as //foo/bar or pre:baz[position()=last()].
 interface LogicalExpr
          Represents an XPath logical expression.
 interface MultiplicativeExpr
          Represents an XPath multiplicative expression.
 interface NumberExpr
          Represents an XPath floating point literal.
 interface PathExpr
          Represents an XPath path expression.
 interface RelationalExpr
          Represents an XPath relational expression such as count(//p) > count(//div).
 interface UnaryExpr
          Represents an XPath unary expression such as -78.
 interface UnionExpr
          Represents an XPath union expression.
 interface VariableReferenceExpr
          Represents an XPath variable reference.
 

Classes in org.jaxen.expr that implement Expr
 class DefaultAbsoluteLocationPath
          Deprecated. this class will become non-public in the future; use the interface instead
(package private)  class DefaultAdditiveExpr
           
(package private)  class DefaultAndExpr
           
(package private)  class DefaultArithExpr
           
(package private)  class DefaultBinaryExpr
           
(package private)  class DefaultDivExpr
           
(package private)  class DefaultEqualityExpr
           
(package private)  class DefaultEqualsExpr
           
 class DefaultExpr
          Deprecated. this class will become non-public in the future; use the interface instead
 class DefaultFilterExpr
          Deprecated. this class will become non-public in the future; use the interface instead
 class DefaultFunctionCallExpr
          Deprecated. this class will become non-public in the future; use the interface instead
(package private)  class DefaultGreaterThanEqualExpr
           
(package private)  class DefaultGreaterThanExpr
           
(package private)  class DefaultLessThanEqualExpr
           
(package private)  class DefaultLessThanExpr
           
(package private)  class DefaultLiteralExpr
           
(package private)  class DefaultLocationPath
           
(package private)  class DefaultLogicalExpr
           
(package private)  class DefaultMinusExpr
           
(package private)  class DefaultModExpr
           
(package private)  class DefaultMultiplicativeExpr
           
(package private)  class DefaultMultiplyExpr
           
(package private)  class DefaultNotEqualsExpr
           
(package private)  class DefaultNumberExpr
           
(package private)  class DefaultOrExpr
           
(package private)  class DefaultPathExpr
           
(package private)  class DefaultPlusExpr
           
(package private)  class DefaultRelationalExpr
           
 class DefaultRelativeLocationPath
          Deprecated. this class will become non-public in the future; use the interface instead
(package private)  class DefaultTruthExpr
           
(package private)  class DefaultUnaryExpr
           
 class DefaultUnionExpr
          Deprecated. this class will become non-public in the future; use the interface instead
(package private)  class DefaultVariableReferenceExpr
           
 

Fields in org.jaxen.expr declared as Expr
private  Expr DefaultBinaryExpr.lhs
           
private  Expr DefaultBinaryExpr.rhs
           
private  Expr DefaultFilterExpr.expr
          Deprecated.  
private  Expr DefaultPathExpr.filterExpr
           
private  Expr DefaultPredicate.expr
           
private  Expr DefaultUnaryExpr.expr
           
private  Expr DefaultXPathExpr.rootExpr
          Deprecated.  
 

Methods in org.jaxen.expr that return Expr
 Expr BinaryExpr.getLHS()
          Returns the left-hand side of the binary expression.
 Expr BinaryExpr.getRHS()
          Returns the right-hand side of the binary expression.
 Expr DefaultBinaryExpr.getLHS()
           
 Expr DefaultBinaryExpr.getRHS()
           
 Expr DefaultBinaryExpr.simplify()
           
 Expr DefaultExpr.simplify()
          Deprecated.  
 Expr DefaultFilterExpr.getExpr()
          Deprecated.  
 Expr DefaultFilterExpr.simplify()
          Deprecated.  
 Expr DefaultFunctionCallExpr.simplify()
          Deprecated.  
 Expr DefaultLocationPath.simplify()
           
 Expr DefaultPathExpr.getFilterExpr()
           
 Expr DefaultPathExpr.simplify()
           
 Expr DefaultPredicate.getExpr()
           
 Expr DefaultUnaryExpr.getExpr()
           
 Expr DefaultUnaryExpr.simplify()
           
 Expr DefaultXPathExpr.getRootExpr()
          Deprecated.  
 Expr DefaultXPathFactory.createUnaryExpr(Expr expr, int unaryOperator)
           
 Expr Expr.simplify()
          Simplifies the XPath expression.
 Expr FilterExpr.getExpr()
           
 Expr PathExpr.getFilterExpr()
          Returns the filter expression that starts the path expression.
 Expr Predicate.getExpr()
          Returns the expression in this predicate.
 Expr UnaryExpr.getExpr()
          Returns the expression following the minus sign.
 Expr XPathExpr.getRootExpr()
          Returns the wrapped expression object.
 Expr XPathFactory.createUnaryExpr(Expr expr, int unaryOperator)
          Returns a new XPath unary expression.
 

Methods in org.jaxen.expr with parameters of type Expr
 void DefaultBinaryExpr.setLHS(Expr lhs)
           
 void DefaultBinaryExpr.setRHS(Expr rhs)
           
 void DefaultFunctionCallExpr.addParameter(Expr parameter)
          Deprecated.  
 void DefaultPathExpr.setFilterExpr(Expr filterExpr)
           
 void DefaultPredicate.setExpr(Expr expr)
           
 void DefaultXPathExpr.setRootExpr(Expr rootExpr)
          Deprecated.  
 XPathExpr DefaultXPathFactory.createXPath(Expr rootExpr)
           
 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)
           
 Expr DefaultXPathFactory.createUnaryExpr(Expr expr, int unaryOperator)
           
 UnionExpr DefaultXPathFactory.createUnionExpr(Expr lhs, Expr rhs)
           
 FilterExpr DefaultXPathFactory.createFilterExpr(Expr expr)
           
 Predicate DefaultXPathFactory.createPredicate(Expr predicateExpr)
           
 void FunctionCallExpr.addParameter(Expr parameter)
          Add the next argument to the function.
 void PathExpr.setFilterExpr(Expr filterExpr)
          Changes the expression's filter expression.
 void Predicate.setExpr(Expr expr)
          Change the expression used by this predicate.
 void XPathExpr.setRootExpr(Expr rootExpr)
          Changes the wrapped expression object.
 XPathExpr XPathFactory.createXPath(Expr rootExpr)
          Create a new XPathExpr from an Expr.
 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.
 Expr XPathFactory.createUnaryExpr(Expr expr, int unaryOperator)
          Returns a new XPath unary expression.
 UnionExpr XPathFactory.createUnionExpr(Expr lhs, Expr rhs)
          Returns a new XPath union expression.
 FilterExpr XPathFactory.createFilterExpr(Expr expr)
          Returns a new XPath filter expression.
 Predicate XPathFactory.createPredicate(Expr predicateExpr)
          Create from the supplied expression.
 

Constructors in org.jaxen.expr with parameters of type Expr
DefaultAdditiveExpr(Expr lhs, Expr rhs)
           
DefaultAndExpr(Expr lhs, Expr rhs)
           
DefaultArithExpr(Expr lhs, Expr rhs)
           
DefaultBinaryExpr(Expr lhs, Expr rhs)
           
DefaultDivExpr(Expr lhs, Expr rhs)
           
DefaultEqualityExpr(Expr lhs, Expr rhs)
           
DefaultEqualsExpr(Expr lhs, Expr rhs)
           
DefaultFilterExpr(Expr expr, PredicateSet predicateSet)
          Deprecated.  
DefaultGreaterThanEqualExpr(Expr lhs, Expr rhs)
           
DefaultGreaterThanExpr(Expr lhs, Expr rhs)
           
DefaultLessThanEqualExpr(Expr lhs, Expr rhs)
           
DefaultLessThanExpr(Expr lhs, Expr rhs)
           
DefaultLogicalExpr(Expr lhs, Expr rhs)
           
DefaultMinusExpr(Expr lhs, Expr rhs)
           
DefaultModExpr(Expr lhs, Expr rhs)
           
DefaultMultiplicativeExpr(Expr lhs, Expr rhs)
           
DefaultMultiplyExpr(Expr lhs, Expr rhs)
           
DefaultNotEqualsExpr(Expr lhs, Expr rhs)
           
DefaultOrExpr(Expr lhs, Expr rhs)
           
DefaultPathExpr(Expr filterExpr, LocationPath locationPath)
           
DefaultPlusExpr(Expr lhs, Expr rhs)
           
DefaultPredicate(Expr expr)
           
DefaultRelationalExpr(Expr lhs, Expr rhs)
           
DefaultTruthExpr(Expr lhs, Expr rhs)
           
DefaultUnaryExpr(Expr expr)
           
DefaultUnionExpr(Expr lhs, Expr rhs)
          Deprecated.  
DefaultXPathExpr(Expr rootExpr)
          Deprecated.  
 

Uses of Expr in org.jaxen.pattern
 

Methods in org.jaxen.pattern with parameters of type Expr
protected static Pattern PatternParser.convertExpr(Expr expr)