Package org.jaxen.expr
Class DefaultExpr
- java.lang.Object
-
- org.jaxen.expr.DefaultExpr
-
- All Implemented Interfaces:
java.io.Serializable,Expr
- Direct Known Subclasses:
DefaultAbsoluteLocationPath,DefaultFilterExpr,DefaultFunctionCallExpr,DefaultRelativeLocationPath,DefaultUnionExpr
public abstract class DefaultExpr extends java.lang.Object implements Expr
Deprecated.this class will become non-public in the future; use the interface instead- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultExpr()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.util.IteratorconvertToIterator(java.lang.Object obj)Deprecated.static java.util.ListconvertToList(java.lang.Object obj)Deprecated.Exprsimplify()Deprecated.Simplifies the XPath expression.
-
-
-
Method Detail
-
simplify
public Expr simplify()
Deprecated.Description copied from interface:ExprSimplifies 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.
-
convertToIterator
public static java.util.Iterator convertToIterator(java.lang.Object obj)
Deprecated.
-
convertToList
public static java.util.List convertToList(java.lang.Object obj)
Deprecated.
-
-