Class DefaultExpr

java.lang.Object
org.jaxen.expr.DefaultExpr
All Implemented Interfaces:
Serializable, Expr
Direct Known Subclasses:
DefaultBinaryExpr, DefaultFilterExpr, DefaultFunctionCallExpr, DefaultLiteralExpr, DefaultLocationPath, DefaultNumberExpr, DefaultPathExpr, DefaultUnaryExpr, DefaultVariableReferenceExpr

public abstract class DefaultExpr extends Object implements Expr
Deprecated.
this class will become non-public in the future; use the interface instead
See Also:
  • Constructor Details

    • DefaultExpr

      public DefaultExpr()
      Deprecated.
  • Method Details

    • 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.