Package org.kigalisim.lang.operation
Class FloorDisplacingOperation
java.lang.Object
org.kigalisim.lang.operation.FloorDisplacingOperation
- All Implemented Interfaces:
Operation
Operation that floors a stream value to a specified minimum and displaces the excess.
This operation calculates a value and floors a specified stream in the engine to that minimum. The excess is displaced to another stream. It can optionally be limited to a specific time period using a ParsedDuring object.
-
Constructor Summary
ConstructorsConstructorDescriptionFloorDisplacingOperation(String stream, Operation valueOperation, String displaceTarget) Create a new FloorDisplacingOperation that applies to all years.FloorDisplacingOperation(String stream, Operation valueOperation, String displaceTarget, ParsedDuring during) Create a new FloorDisplacingOperation 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
-
FloorDisplacingOperation
Create a new FloorDisplacingOperation that applies to all years.- Parameters:
stream- The name of the stream to floor.valueOperation- The operation that calculates the minimum value.displaceTarget- The name of the stream to displace excess to.
-
FloorDisplacingOperation
public FloorDisplacingOperation(String stream, Operation valueOperation, String displaceTarget, ParsedDuring during) Create a new FloorDisplacingOperation that applies to a specific time period.- Parameters:
stream- The name of the stream to floor.valueOperation- The operation that calculates the minimum value.displaceTarget- The name of the stream to displace excess to.during- The time period during which this operation applies.
-
-
Method Details