org.apache.commons.el
public abstract class ArithmeticOperator extends BinaryOperator
This is the superclass for all binary arithmetic operators
Version: $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: luehe $
Method Summary | |
---|---|
Object | apply(Object pLeft, Object pRight, Logger pLogger)
Applies the operator to the given value
|
abstract double | apply(double pLeft, double pRight)
Applies the operator to the given double values, returning a double
|
abstract long | apply(long pLeft, long pRight)
Applies the operator to the given double values, returning a double
|
abstract BigDecimal | apply(BigDecimal pLeft, BigDecimal pRight)
Applies the operator to the given BigDecimal values, returning a
BigDecimal.
|
abstract BigInteger | apply(BigInteger pLeft, BigInteger pRight)
Applies the operator to the given BigInteger values, returning a
BigInteger.
|