Package org.jaxen.expr
Interface Expr
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
AdditiveExpr,BinaryExpr,EqualityExpr,FilterExpr,FunctionCallExpr,LiteralExpr,LocationPath,LogicalExpr,MultiplicativeExpr,NumberExpr,PathExpr,RelationalExpr,UnaryExpr,UnionExpr,VariableReferenceExpr
- All Known Implementing Classes:
DefaultAbsoluteLocationPath,DefaultExpr,DefaultFilterExpr,DefaultFunctionCallExpr,DefaultRelativeLocationPath,DefaultUnionExpr
public interface Expr extends java.io.SerializableRepresents an XPath expression. This is production 14 in the XPath 1.0 specification:[14] Expr ::= OrExpr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectevaluate(Context context)Evaluate the expression in the given context, and return the result.java.lang.StringgetText()Returns a String containing the XPath expression.Exprsimplify()Simplifies the XPath expression.
-
-
-
Method Detail
-
getText
java.lang.String getText()
Returns a String containing the XPath expression.- Returns:
- the text form of this XPath expression
-
simplify
Expr simplify()
Simplifies the XPath expression. For example, the expression//para[1 = 1]could be simplified to//para. In practice, this is usually a noop. Jaxen does not currently perform any simplification.- Returns:
- the simplified expression
-
evaluate
java.lang.Object evaluate(Context context) throws JaxenException
Evaluate the expression in the given context, and return the result. The result will be ajava.lang.Doublefor expressions that return a number, ajava.lang.Stringfor expressions that return a string, ajava.lang.Booleanfor expressions that return a boolean, and ajava.util.Listfor expressions that return a node-set. In the latter case, the elements of the list are the actual objects from the source document model. Copies are not made.- Parameters:
context- the context in which the expression is evaluated- Returns:
- an object representing the result of the evaluation
- Throws:
JaxenException
-
-