Class ArithmeticOperator
- java.lang.Object
-
- org.apache.taglibs.standard.lang.jstl.BinaryOperator
-
- org.apache.taglibs.standard.lang.jstl.ArithmeticOperator
-
- Direct Known Subclasses:
MinusOperator,MultiplyOperator,PlusOperator
public abstract class ArithmeticOperator extends BinaryOperator
This is the superclass for all binary arithmetic operators
-
-
Constructor Summary
Constructors Constructor Description ArithmeticOperator()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract doubleapply(double pLeft, double pRight, Logger pLogger)Applies the operator to the given double values, returning a doubleabstract longapply(long pLeft, long pRight, Logger pLogger)Applies the operator to the given double values, returning a doublejava.lang.Objectapply(java.lang.Object pLeft, java.lang.Object pRight, java.lang.Object pContext, Logger pLogger)Applies the operator to the given value-
Methods inherited from class org.apache.taglibs.standard.lang.jstl.BinaryOperator
getOperatorSymbol, shouldCoerceToBoolean, shouldEvaluate
-
-
-
-
Method Detail
-
apply
public java.lang.Object apply(java.lang.Object pLeft, java.lang.Object pRight, java.lang.Object pContext, Logger pLogger) throws ELExceptionApplies the operator to the given value- Specified by:
applyin classBinaryOperator- Throws:
ELException
-
apply
public abstract double apply(double pLeft, double pRight, Logger pLogger)Applies the operator to the given double values, returning a double
-
apply
public abstract long apply(long pLeft, long pRight, Logger pLogger)Applies the operator to the given double values, returning a double
-
-