public interface RunResult
ModelRunner
Modifier and Type | Method and Description |
---|---|
VariableResult |
get(java.util.List<java.lang.String> key)
Get aggregated data for a specific variable as a as
VariableResult object |
VariableResult |
get(java.lang.String key)
Get aggregated data for a specific variable as a as
VariableResult object |
java.util.Map<java.lang.Long,ModelRecordAggregator> |
getRecordResultsMap() |
java.util.Map<java.lang.Long,ModelAggregator> |
getResultsMap()
Get all results of multi run.
|
java.util.List<java.lang.String> |
listEntries()
Get list of all variables statistics are being collected for
|
VariableResult get(java.lang.String key)
VariableResult
object
If variable is nested in the JSON representation of the model, represent the full JSON path as a string with JSON keys separated by '.' e.g. "variableName.subName"
If you are unsure the names of your variables, use listEntries()
to get
the full list of available variables
null
if no variable exists with this nameVariableResult get(java.util.List<java.lang.String> key)
VariableResult
object
If variable is nested in the JSON representation of the model, represent the full JSON path as a list of JSON key strings"
If you are unsure the names of your variables, use listEntries()
to get
the full list of available variables
null
if no variable exists with this namejava.util.List<java.lang.String> listEntries()
java.util.Map<java.lang.Long,ModelAggregator> getResultsMap()
ModelAggregator
java.util.Map<java.lang.Long,ModelRecordAggregator> getRecordResultsMap()