org.jaxen.expr
Class DefaultExpr
java.lang.Object
org.jaxen.expr.DefaultExpr
- All Implemented Interfaces:
- Serializable, Expr
- Direct Known Subclasses:
- DefaultAbsoluteLocationPath, DefaultFilterExpr, DefaultFunctionCallExpr, DefaultRelativeLocationPath, DefaultUnionExpr
Deprecated. this class will become non-public in the future;
use the interface instead
public abstract class DefaultExpr
- extends Object
- implements Expr
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DefaultExpr
public DefaultExpr()
- Deprecated.
simplify
public Expr simplify()
- Deprecated.
- Description copied from interface:
Expr
- 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.
- Specified by:
simplify
in interface Expr
- Returns:
- the simplified expression
convertToIterator
public static Iterator convertToIterator(Object obj)
- Deprecated.
convertToList
public static List convertToList(Object obj)
- Deprecated.
Copyright © 2001-2007 Codehaus. All Rights Reserved.