Class DivisionNode
- java.lang.Object
-
- de.gebit.integrity.operations.standard.operands.OperatorNode<Double,Double>
-
- de.gebit.integrity.operations.standard.operands.DivisionNode
-
public class DivisionNode extends OperatorNode<Double,Double>
Divides two numbers. Uses double values as input since BigDecimals cannot always be divided, for example in case of periodic results.- Author:
- Rene Schneider - initial API and implementation
-
-
Constructor Summary
Constructors Constructor Description DivisionNode(Operation anOperation, Object aLeftOperand, Object aRightOperand)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ObjectevaluateInternal(Double aLeftOperand, Double aRightOperand)Must be implemented by subclasses to implement the actual evaluation of this node.-
Methods inherited from class de.gebit.integrity.operations.standard.operands.OperatorNode
evaluate, getEvaluatedLeftOperand, getEvaluatedRightOperand
-
-
-
-
Method Detail
-
evaluateInternal
protected Object evaluateInternal(Double aLeftOperand, Double aRightOperand) throws UnexecutableException
Description copied from class:OperatorNodeMust be implemented by subclasses to implement the actual evaluation of this node. It will get evaluated and converted operands and needs to return the result of the evaluation.- Specified by:
evaluateInternalin classOperatorNode<Double,Double>- Parameters:
aLeftOperand- the evaluated left operandaRightOperand- the evaluated right operand- Returns:
- the result of the evaluation
- Throws:
UnexecutableException
-
-