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 Date
getExpectedValue()
Gets the expected value of the risk item.int
getItemType()
Gets an instance of theRiskItemType
enumeration.Date
getMaximum()
Gets the maximum value which was generated during Monte Carlo simulation.Date
getMinimum()
Gets the minimum value which was generated during Monte Carlo simulation.Date
getPercentile(int percent)
Gets a value below which a specified percentage of generated samples fall.Duration
getStandardDeviation()
Gets the standard deviation of the risk item.String
toString()
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
RiskItemType
enumeration.- Returns:
- an instance of the
RiskItemType
enumeration.
-
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.
-
-