|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 |
DefaultUnaryExpr.expr
|
private Expr |
DefaultPredicate.expr
|
private Expr |
DefaultFilterExpr.expr
Deprecated. |
private Expr |
DefaultPathExpr.filterExpr
|
private Expr |
DefaultBinaryExpr.lhs
|
private Expr |
DefaultBinaryExpr.rhs
|
private Expr |
DefaultXPathExpr.rootExpr
Deprecated. |
Methods in org.jaxen.expr that return Expr | |
---|---|
Expr |
XPathFactory.createUnaryExpr(Expr expr,
int unaryOperator)
Returns a new XPath unary expression. |
Expr |
DefaultXPathFactory.createUnaryExpr(Expr expr,
int unaryOperator)
|
Expr |
DefaultUnaryExpr.getExpr()
|
Expr |
UnaryExpr.getExpr()
Returns the expression following the minus sign. |
Expr |
DefaultPredicate.getExpr()
|
Expr |
DefaultFilterExpr.getExpr()
Deprecated. |
Expr |
FilterExpr.getExpr()
|
Expr |
Predicate.getExpr()
Returns the expression in this predicate. |
Expr |
PathExpr.getFilterExpr()
Returns the filter expression that starts the path expression. |
Expr |
DefaultPathExpr.getFilterExpr()
|
Expr |
DefaultBinaryExpr.getLHS()
|
Expr |
BinaryExpr.getLHS()
Returns the left-hand side of the binary expression. |
Expr |
DefaultBinaryExpr.getRHS()
|
Expr |
BinaryExpr.getRHS()
Returns the right-hand side of the binary expression. |
Expr |
XPathExpr.getRootExpr()
Returns the wrapped expression object. |
Expr |
DefaultXPathExpr.getRootExpr()
Deprecated. |
Expr |
DefaultBinaryExpr.simplify()
|
Expr |
DefaultUnaryExpr.simplify()
|
Expr |
DefaultLocationPath.simplify()
|
Expr |
DefaultPathExpr.simplify()
|
Expr |
DefaultFilterExpr.simplify()
Deprecated. |
Expr |
Expr.simplify()
Simplifies the XPath expression. |
Expr |
DefaultExpr.simplify()
Deprecated. |
Expr |
DefaultFunctionCallExpr.simplify()
Deprecated. |
Methods in org.jaxen.expr with parameters of type Expr | |
---|---|
void |
DefaultFunctionCallExpr.addParameter(Expr parameter)
Deprecated. |
void |
FunctionCallExpr.addParameter(Expr parameter)
Add the next argument to the function. |
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)
|
FilterExpr |
XPathFactory.createFilterExpr(Expr expr)
Returns a new XPath filter expression. |
FilterExpr |
DefaultXPathFactory.createFilterExpr(Expr expr)
|
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)
|
Predicate |
XPathFactory.createPredicate(Expr predicateExpr)
Create from the supplied expression. |
Predicate |
DefaultXPathFactory.createPredicate(Expr predicateExpr)
|
BinaryExpr |
XPathFactory.createRelationalExpr(Expr lhs,
Expr rhs,
int relationalOperator)
Returns a new XPath relational expression. |
BinaryExpr |
DefaultXPathFactory.createRelationalExpr(Expr lhs,
Expr rhs,
int relationalOperator)
|
Expr |
XPathFactory.createUnaryExpr(Expr expr,
int unaryOperator)
Returns a new XPath unary expression. |
Expr |
DefaultXPathFactory.createUnaryExpr(Expr expr,
int unaryOperator)
|
UnionExpr |
XPathFactory.createUnionExpr(Expr lhs,
Expr rhs)
Returns a new XPath union expression. |
UnionExpr |
DefaultXPathFactory.createUnionExpr(Expr lhs,
Expr rhs)
|
XPathExpr |
XPathFactory.createXPath(Expr rootExpr)
Create a new XPathExpr from an Expr . |
XPathExpr |
DefaultXPathFactory.createXPath(Expr rootExpr)
|
void |
DefaultPredicate.setExpr(Expr expr)
|
void |
Predicate.setExpr(Expr expr)
Change the expression used by this predicate. |
void |
PathExpr.setFilterExpr(Expr filterExpr)
Changes the expression's filter expression. |
void |
DefaultPathExpr.setFilterExpr(Expr filterExpr)
|
void |
DefaultBinaryExpr.setLHS(Expr lhs)
|
void |
DefaultBinaryExpr.setRHS(Expr rhs)
|
void |
XPathExpr.setRootExpr(Expr rootExpr)
Changes the wrapped expression object. |
void |
DefaultXPathExpr.setRootExpr(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)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |