Class ArithmeticOperator
java.lang.Object
org.apache.commons.el.BinaryOperator
org.apache.commons.el.ArithmeticOperator
- Direct Known Subclasses:
MinusOperator, MultiplyOperator, PlusOperator
This is the superclass for all binary arithmetic operators
- Version:
- $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: luehe $
- Author:
- Nathan Abramson - Art Technology Group
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract doubleapply(double pLeft, double pRight) Applies the operator to the given double values, returning a doubleabstract longapply(long pLeft, long pRight) Applies the operator to the given double values, returning a doubleApplies the operator to the given valueabstract BigDecimalapply(BigDecimal pLeft, BigDecimal pRight) Applies the operator to the given BigDecimal values, returning a BigDecimal.abstract BigIntegerapply(BigInteger pLeft, BigInteger pRight) Applies the operator to the given BigInteger values, returning a BigInteger.Methods inherited from class BinaryOperator
getOperatorSymbol, shouldCoerceToBoolean, shouldEvaluate
-
Constructor Details
-
ArithmeticOperator
public ArithmeticOperator()
-
-
Method Details
-
apply
-
apply
public abstract double apply(double pLeft, double pRight) Applies the operator to the given double values, returning a double -
apply
public abstract long apply(long pLeft, long pRight) Applies the operator to the given double values, returning a double -
apply
Applies the operator to the given BigDecimal values, returning a BigDecimal. -
apply
Applies the operator to the given BigInteger values, returning a BigInteger.
-