Class SubtractionNode
- java.lang.Object
-
- de.gebit.integrity.operations.standard.operands.OperatorNode<BigDecimal,BigDecimal>
-
- de.gebit.integrity.operations.standard.operands.SubtractionNode
-
public class SubtractionNode extends OperatorNode<BigDecimal,BigDecimal>
Subtracts one value from the other.- Author:
- Rene Schneider - initial API and implementation
-
-
Constructor Summary
Constructors Constructor Description SubtractionNode(Operation anOperation, Object aLeftOperand, Object aRightOperand)
Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Object
evaluateInternal(BigDecimal aLeftOperand, BigDecimal 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(BigDecimal aLeftOperand, BigDecimal aRightOperand) throws UnexecutableException
Description copied from class:OperatorNode
Must 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:
evaluateInternal
in classOperatorNode<BigDecimal,BigDecimal>
- Parameters:
aLeftOperand
- the evaluated left operandaRightOperand
- the evaluated right operand- Returns:
- the result of the evaluation
- Throws:
UnexecutableException
-
-