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 instead(package private) classDefaultAdditiveExpr(package private) classDefaultAndExpr(package private) classDefaultArithExpr(package private) classDefaultBinaryExpr(package private) classDefaultDivExpr(package private) classDefaultEqualityExpr(package private) classDefaultEqualsExprclassDefaultExprDeprecated.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 instead(package private) classDefaultGreaterThanEqualExpr(package private) classDefaultGreaterThanExpr(package private) classDefaultLessThanEqualExpr(package private) classDefaultLessThanExpr(package private) classDefaultLiteralExpr(package private) classDefaultLocationPath(package private) classDefaultLogicalExpr(package private) classDefaultMinusExpr(package private) classDefaultModExpr(package private) classDefaultMultiplicativeExpr(package private) classDefaultMultiplyExpr(package private) classDefaultNotEqualsExpr(package private) classDefaultNumberExpr(package private) classDefaultOrExpr(package private) classDefaultPathExpr(package private) classDefaultPlusExpr(package private) classDefaultRelationalExprclassDefaultRelativeLocationPathDeprecated.this class will become non-public in the future; use the interface instead(package private) classDefaultTruthExpr(package private) classDefaultUnaryExprclassDefaultUnionExprDeprecated.this class will become non-public in the future; use the interface instead(package private) classDefaultVariableReferenceExprFields in org.jaxen.expr declared as Expr Modifier and Type Field Description private ExprDefaultFilterExpr. exprDeprecated.private ExprDefaultPredicate. exprprivate ExprDefaultUnaryExpr. exprprivate ExprDefaultPathExpr. filterExprprivate ExprDefaultBinaryExpr. lhsprivate ExprDefaultBinaryExpr. rhsprivate ExprDefaultXPathExpr. rootExprDeprecated.Methods 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.ExprDefaultPredicate. getExpr()ExprDefaultUnaryExpr. getExpr()ExprFilterExpr. getExpr()ExprPredicate. getExpr()Returns the expression in this predicate.ExprUnaryExpr. getExpr()Returns the expression following the minus sign.ExprDefaultPathExpr. getFilterExpr()ExprPathExpr. getFilterExpr()Returns the filter expression that starts the path expression.ExprBinaryExpr. getLHS()Returns the left-hand side of the binary expression.ExprDefaultBinaryExpr. getLHS()ExprBinaryExpr. getRHS()Returns the right-hand side of the binary expression.ExprDefaultBinaryExpr. getRHS()ExprDefaultXPathExpr. getRootExpr()Deprecated.ExprXPathExpr. getRootExpr()Returns the wrapped expression object.ExprDefaultBinaryExpr. simplify()ExprDefaultExpr. simplify()Deprecated.ExprDefaultFilterExpr. simplify()Deprecated.ExprDefaultFunctionCallExpr. simplify()Deprecated.ExprDefaultLocationPath. simplify()ExprDefaultPathExpr. simplify()ExprDefaultUnaryExpr. simplify()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.voidDefaultPredicate. setExpr(Expr expr)voidPredicate. setExpr(Expr expr)Change the expression used by this predicate.voidDefaultPathExpr. setFilterExpr(Expr filterExpr)voidPathExpr. setFilterExpr(Expr filterExpr)Changes the expression's filter expression.voidDefaultBinaryExpr. setLHS(Expr lhs)voidDefaultBinaryExpr. setRHS(Expr rhs)voidDefaultXPathExpr. setRootExpr(Expr rootExpr)Deprecated.voidXPathExpr. setRootExpr(Expr rootExpr)Changes the wrapped expression object. -
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)Deprecated.
-