Uses of Interface
org.jaxen.expr.Expr
-
Packages that use Expr Package Description 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 Modifier and Type Method Description ExprBaseXPath. 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 Modifier and Type Interface Description interfaceAdditiveExprRepresents an XPath additive expression.interfaceBinaryExprRepresents a binary expression.interfaceEqualityExprRepresents an XPath equality expression.interfaceFilterExprRepresents an XPath filter expression.interfaceFunctionCallExprRepresents an XPath function call expression.interfaceLiteralExprRepresents an XPath string literal.interfaceLocationPathRepresents an XPath location path such as//foo/barorpre:baz[position()=last()].interfaceLogicalExprRepresents an XPath logical expression.interfaceMultiplicativeExprRepresents an XPath multiplicative expression.interfaceNumberExprRepresents an XPath floating point literal.interfacePathExprRepresents an XPath path expression.interfaceRelationalExprRepresents an XPath relational expression such ascount(//p) > count(//div).interfaceUnaryExprRepresents an XPath unary expression such as-78.interfaceUnionExprRepresents an XPath union expression.interfaceVariableReferenceExprRepresents an XPath variable reference.Classes in org.jaxen.expr that implement Expr Modifier and Type Class Description classDefaultAbsoluteLocationPathDeprecated.this class will become non-public in the future; use the interface insteadclassDefaultExprDeprecated.this class will become non-public in the future; use the interface insteadclassDefaultFilterExprDeprecated.this class will become non-public in the future; use the interface insteadclassDefaultFunctionCallExprDeprecated.this class will become non-public in the future; use the interface insteadclassDefaultRelativeLocationPathDeprecated.this class will become non-public in the future; use the interface insteadclassDefaultUnionExprDeprecated.this class will become non-public in the future; use the interface insteadMethods in org.jaxen.expr that return Expr Modifier and Type Method Description ExprDefaultXPathFactory. createUnaryExpr(Expr expr, int unaryOperator)ExprXPathFactory. createUnaryExpr(Expr expr, int unaryOperator)Returns a new XPath unary expression.ExprDefaultFilterExpr. getExpr()Deprecated.ExprFilterExpr. getExpr()ExprPredicate. getExpr()Returns the expression in this predicate.ExprUnaryExpr. getExpr()Returns the expression following the minus sign.ExprPathExpr. getFilterExpr()Returns the filter expression that starts the path expression.ExprBinaryExpr. getLHS()Returns the left-hand side of the binary expression.ExprBinaryExpr. getRHS()Returns the right-hand side of the binary expression.ExprDefaultXPathExpr. getRootExpr()Deprecated.ExprXPathExpr. getRootExpr()Returns the wrapped expression object.ExprDefaultExpr. simplify()Deprecated.ExprDefaultFilterExpr. simplify()Deprecated.ExprDefaultFunctionCallExpr. simplify()Deprecated.ExprExpr. simplify()Simplifies the XPath expression.Methods in org.jaxen.expr with parameters of type Expr Modifier and Type Method Description voidDefaultFunctionCallExpr. addParameter(Expr parameter)Deprecated.voidFunctionCallExpr. addParameter(Expr parameter)Add the next argument to the function.BinaryExprDefaultXPathFactory. createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)BinaryExprXPathFactory. createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)Returns a new XPath additive expression.BinaryExprDefaultXPathFactory. createAndExpr(Expr lhs, Expr rhs)BinaryExprXPathFactory. createAndExpr(Expr lhs, Expr rhs)Returns a new XPath And expression.BinaryExprDefaultXPathFactory. createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)BinaryExprXPathFactory. createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)Returns a new XPath equality expression.FilterExprDefaultXPathFactory. createFilterExpr(Expr expr)FilterExprXPathFactory. createFilterExpr(Expr expr)Returns a new XPath filter expression.BinaryExprDefaultXPathFactory. createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)BinaryExprXPathFactory. createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)Returns a new XPath multiplicative expression.BinaryExprDefaultXPathFactory. createOrExpr(Expr lhs, Expr rhs)BinaryExprXPathFactory. createOrExpr(Expr lhs, Expr rhs)Returns a new XPath Or expression.PredicateDefaultXPathFactory. createPredicate(Expr predicateExpr)PredicateXPathFactory. createPredicate(Expr predicateExpr)Create from the supplied expression.BinaryExprDefaultXPathFactory. createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)BinaryExprXPathFactory. createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)Returns a new XPath relational expression.ExprDefaultXPathFactory. createUnaryExpr(Expr expr, int unaryOperator)ExprXPathFactory. createUnaryExpr(Expr expr, int unaryOperator)Returns a new XPath unary expression.UnionExprDefaultXPathFactory. createUnionExpr(Expr lhs, Expr rhs)UnionExprXPathFactory. createUnionExpr(Expr lhs, Expr rhs)Returns a new XPath union expression.XPathExprDefaultXPathFactory. createXPath(Expr rootExpr)XPathExprXPathFactory. createXPath(Expr rootExpr)Create a newXPathExprfrom anExpr.voidPredicate. setExpr(Expr expr)Change the expression used by this predicate.voidPathExpr. setFilterExpr(Expr filterExpr)Changes the expression's filter expression.voidDefaultXPathExpr. setRootExpr(Expr rootExpr)Deprecated.voidXPathExpr. setRootExpr(Expr rootExpr)Changes the wrapped expression object.Constructors in org.jaxen.expr with parameters of type Expr Constructor Description DefaultFilterExpr(Expr expr, PredicateSet predicateSet)Deprecated.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 Modifier and Type Method Description protected static PatternPatternParser. convertExpr(Expr expr)
-