org.jaxen.expr
Class DefaultLessThanExpr

java.lang.Object
  extended by org.jaxen.expr.DefaultExpr
      extended by org.jaxen.expr.DefaultBinaryExpr
          extended by org.jaxen.expr.DefaultTruthExpr
              extended by org.jaxen.expr.DefaultRelationalExpr
                  extended by org.jaxen.expr.DefaultLessThanExpr
All Implemented Interfaces:
java.io.Serializable, BinaryExpr, Expr, RelationalExpr

 class DefaultLessThanExpr
extends DefaultRelationalExpr


Field Summary
private static long serialVersionUID
           
 
Constructor Summary
DefaultLessThanExpr(Expr lhs, Expr rhs)
           
 
Method Summary
protected  boolean evaluateDoubleDouble(java.lang.Double lhs, java.lang.Double rhs)
           
 java.lang.String getOperator()
          Returns the operator for the binary expression such as "+" or "div".
 
Methods inherited from class org.jaxen.expr.DefaultRelationalExpr
evaluate, toString
 
Methods inherited from class org.jaxen.expr.DefaultTruthExpr
bothAreBoolean, bothAreSets, eitherIsBoolean, eitherIsNumber, eitherIsSet, isSet, setIsEmpty
 
Methods inherited from class org.jaxen.expr.DefaultBinaryExpr
getLHS, getRHS, getText, setLHS, setRHS, simplify
 
Methods inherited from class org.jaxen.expr.DefaultExpr
convertToIterator, convertToList
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.jaxen.expr.BinaryExpr
getLHS, getRHS
 
Methods inherited from interface org.jaxen.expr.Expr
getText, simplify
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

DefaultLessThanExpr

DefaultLessThanExpr(Expr lhs,
                    Expr rhs)
Method Detail

getOperator

public java.lang.String getOperator()
Description copied from interface: BinaryExpr
Returns the operator for the binary expression such as "+" or "div".

Specified by:
getOperator in interface BinaryExpr
Specified by:
getOperator in class DefaultBinaryExpr
Returns:
the operator for the expression

evaluateDoubleDouble

protected boolean evaluateDoubleDouble(java.lang.Double lhs,
                                       java.lang.Double rhs)
Specified by:
evaluateDoubleDouble in class DefaultRelationalExpr