Class RelationalOperator
java.lang.Object
org.apache.taglibs.standard.lang.jstl.BinaryOperator
org.apache.taglibs.standard.lang.jstl.RelationalOperator
- Direct Known Subclasses:
GreaterThanOperator,GreaterThanOrEqualsOperator,LessThanOperator,LessThanOrEqualsOperator
This is the superclass for all relational operators (except == or !=)
- Version:
- $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: kchung $
- Author:
- Nathan Abramson - Art Technology Group
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract booleanApplies the operator to the given double valuesabstract booleanApplies the operator to the given long valuesApplies the operator to the given valueabstract booleanApplies the operator to the given String valuesMethods inherited from class org.apache.taglibs.standard.lang.jstl.BinaryOperator
getOperatorSymbol, shouldCoerceToBoolean, shouldEvaluate
-
Constructor Details
-
RelationalOperator
public RelationalOperator()
-
-
Method Details
-
apply
public Object apply(Object pLeft, Object pRight, Object pContext, Logger pLogger) throws ELException Applies the operator to the given value- Specified by:
applyin classBinaryOperator- Throws:
ELException
-
apply
Applies the operator to the given double values -
apply
Applies the operator to the given long values -
apply
Applies the operator to the given String values
-