Class SimulationRunMetadata
- java.lang.Object
-
- org.drools.scenariosimulation.api.model.SimulationRunMetadata
-
public class SimulationRunMetadata extends Object
Aggregation of all metadata information about a simulation run
-
-
Field Summary
Fields Modifier and Type Field Description protected AuditLogauditLogAuditLog> representing the log to print in the CSV reportprotected intavailableprotected doublecoveragePercentageprotected intexecutedprotected Map<String,Integer>outputCounterprotected Map<ScenarioWithIndex,Map<String,Integer>>scenarioCounter
-
Constructor Summary
Constructors Constructor Description SimulationRunMetadata()SimulationRunMetadata(int available, int executed, Map<String,Integer> outputCounter, Map<ScenarioWithIndex,Map<String,Integer>> scenarioCounter, AuditLog auditLog)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuditLoggetAuditLog()intgetAvailable()doublegetCoveragePercentage()intgetExecuted()Map<String,Integer>getOutputCounter()Map<ScenarioWithIndex,Map<String,Integer>>getScenarioCounter()
-
-
-
Field Detail
-
auditLog
protected AuditLog auditLog
AuditLog> representing the log to print in the CSV report
-
available
protected int available
-
executed
protected int executed
-
coveragePercentage
protected double coveragePercentage
-
scenarioCounter
protected Map<ScenarioWithIndex,Map<String,Integer>> scenarioCounter
-
-