Package org.jaxen.expr
Class DefaultGreaterThanExpr
- java.lang.Object
-
- org.jaxen.expr.DefaultExpr
-
- org.jaxen.expr.DefaultBinaryExpr
-
- org.jaxen.expr.DefaultTruthExpr
-
- org.jaxen.expr.DefaultRelationalExpr
-
- org.jaxen.expr.DefaultGreaterThanExpr
-
- All Implemented Interfaces:
java.io.Serializable
,BinaryExpr
,Expr
,RelationalExpr
class DefaultGreaterThanExpr extends DefaultRelationalExpr
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DefaultGreaterThanExpr(Expr lhs, Expr rhs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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, isBoolean, 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
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
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 interfaceBinaryExpr
- Specified by:
getOperator
in classDefaultBinaryExpr
- Returns:
- the operator for the expression
-
evaluateDoubleDouble
protected boolean evaluateDoubleDouble(java.lang.Double lhs, java.lang.Double rhs)
- Specified by:
evaluateDoubleDouble
in classDefaultRelationalExpr
-
-