RiskAnalysisSettings
Contents
[
Hide
]Inheritance: java.lang.Object
public class RiskAnalysisSettings
Specifies settings for performing risk analysis.
Constructors
Constructor | Description |
---|---|
RiskAnalysisSettings() | Initializes a new instance of the RiskAnalysisSettings class. |
Methods
Method | Description |
---|---|
getIterationsCount() | Gets the number of iterations to use in Monte Carlo simulation. |
getPatterns() | Gets a collection containing the instances of the RiskPattern class. |
setIterationsCount(int value) | Sets the number of iterations to use in Monte Carlo simulation. |
RiskAnalysisSettings()
public RiskAnalysisSettings()
Initializes a new instance of the RiskAnalysisSettings class.
getIterationsCount()
public final int getIterationsCount()
Gets the number of iterations to use in Monte Carlo simulation. The default value is 100.
Returns: int - the number of iterations to use in Monte Carlo simulation.
getPatterns()
public final RiskPatternCollection getPatterns()
Gets a collection containing the instances of the RiskPattern class.
Returns: RiskPatternCollection - a collection containing the instances of the RiskPattern class.
setIterationsCount(int value)
public final void setIterationsCount(int value)
Sets the number of iterations to use in Monte Carlo simulation. The default value is 100.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | the number of iterations to use in Monte Carlo simulation. |