Package com.aspose.tasks
Class RiskItemStatistics
- java.lang.Object
-
- com.aspose.tasks.RiskItemStatistics
-
public class RiskItemStatistics extends Object
Represents an item which stores statistical data for the task of the analyzed project.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetExpectedValue()Gets the expected value of the risk item.intgetItemType()Gets an instance of theRiskItemTypeenumeration.DategetMaximum()Gets the maximum value which was generated during Monte Carlo simulation.DategetMinimum()Gets the minimum value which was generated during Monte Carlo simulation.DategetPercentile(int percent)Gets a value below which a specified percentage of generated samples fall.DurationgetStandardDeviation()Gets the standard deviation of the risk item.StringtoString()Returns short string representation of a risk item.
-
-
-
Method Detail
-
getExpectedValue
public final Date getExpectedValue()
Gets the expected value of the risk item.
- Returns:
- the expected value of the risk item.
-
getItemType
public final int getItemType()
Gets an instance of the
RiskItemTypeenumeration.- Returns:
- an instance of the
RiskItemTypeenumeration.
-
getMaximum
public final Date getMaximum()
Gets the maximum value which was generated during Monte Carlo simulation.
- Returns:
- the maximum value which was generated during Monte Carlo simulation.
-
getMinimum
public final Date getMinimum()
Gets the minimum value which was generated during Monte Carlo simulation.
- Returns:
- the minimum value which was generated during Monte Carlo simulation.
-
getPercentile
public final Date getPercentile(int percent)
Gets a value below which a specified percentage of generated samples fall.
- Parameters:
percent- the specified percent between 0 and 100.- Returns:
- a value below which a specified percentage of generated samples fall.
-
getStandardDeviation
public final Duration getStandardDeviation()
Gets the standard deviation of the risk item.
- Returns:
- the standard deviation of the risk item.
-
-