Package org.kigalisim.lang.operation
Class EqualsOperation
java.lang.Object
org.kigalisim.lang.operation.EqualsOperation
- All Implemented Interfaces:
Operation
Operation that sets a consumption value in the engine.
This operation calculates a value and sets it as a consumption value in the engine. It can optionally be limited to a specific time period using a ParsedDuring object.
-
Constructor Summary
ConstructorsConstructorDescriptionEqualsOperation(Operation valueOperation) Create a new EqualsOperation that applies to all years.EqualsOperation(Operation valueOperation, ParsedDuring during) Create a new EqualsOperation that applies to a specific time period. -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(PushDownMachine machine) Execute the calculation and leave the result at the top of the stack.
-
Constructor Details
-
EqualsOperation
Create a new EqualsOperation that applies to all years.- Parameters:
valueOperation- The operation that calculates the value to set.
-
EqualsOperation
Create a new EqualsOperation that applies to a specific time period.- Parameters:
valueOperation- The operation that calculates the value to set.during- The time period during which this operation applies.
-
-
Method Details