Package org.kigalisim.lang.operation
Class ChangeOperation
java.lang.Object
org.kigalisim.lang.operation.ChangeOperation
- All Implemented Interfaces:
Operation
Operation that changes a stream value by a specified amount.
This operation calculates a value and changes a specified stream in the engine by that amount. It can optionally be limited to a specific time period using a ParsedDuring object.
-
Constructor Summary
ConstructorsConstructorDescriptionChangeOperation(String stream, Operation valueOperation) Create a new ChangeOperation that applies to all years.ChangeOperation(String stream, Operation valueOperation, ParsedDuring during) Create a new ChangeOperation 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
-
ChangeOperation
Create a new ChangeOperation that applies to all years.- Parameters:
stream- The name of the stream to change.valueOperation- The operation that calculates the amount to change by.
-
ChangeOperation
Create a new ChangeOperation that applies to a specific time period.- Parameters:
stream- The name of the stream to change.valueOperation- The operation that calculates the amount to change by.during- The time period during which this operation applies.
-
-
Method Details