Uses of Class
org.processmining.framework.models.hlprocess.Distribution

Packages that use Distribution
org.processmining.analysis.logstatistics   
org.processmining.exporting.petrinet.cpnexport.HLImplementation   
org.processmining.exporting.petrinet.cpnexport.HLImplementation.HLDistribution   
org.processmining.framework.models.hlprocess   
 

Uses of Distribution in org.processmining.analysis.logstatistics
 

Methods in org.processmining.analysis.logstatistics that return Distribution
static Distribution LogStatistic.getDistributionObject(org.apache.commons.math.stat.descriptive.SummaryStatistics statistic)
          Returns a distribution object that represents the given statistics.
 

Uses of Distribution in org.processmining.exporting.petrinet.cpnexport.HLImplementation
 

Methods in org.processmining.exporting.petrinet.cpnexport.HLImplementation that return Distribution
 Distribution HLActivitySet.getCaseGenerationScheme()
           
 Distribution HLPetriNet.getCaseGenerationScheme()
           
 Distribution HLActivity.getExecutionTime()
           
 Distribution HLTransition.getExecutionTime()
           
 Distribution HLAttribute.getPossibleValuesNumeric()
           
 Distribution HLDataAttributeValues.getPossibleValuesNumeric()
          Retrieves the initial value for the associated data attribute.
 Distribution HLActivity.getSojournTime()
           
 Distribution HLTransition.getSojournTime()
           
 Distribution HLActivity.getWaitingTime()
           
 Distribution HLTransition.getWaitingTime()
           
 

Methods in org.processmining.exporting.petrinet.cpnexport.HLImplementation with parameters of type Distribution
 void HLActivitySet.setCaseGenerationScheme(Distribution dist)
           
 void HLPetriNet.setCaseGenerationScheme(Distribution dist)
           
 void HLActivity.setExecutionTime(Distribution dist)
           
 void HLTransition.setExecutionTime(Distribution dist)
           
 void HLActivity.setSojournTime(Distribution dist)
           
 void HLTransition.setSojournTime(Distribution dist)
           
 void HLActivity.setWaitingTime(Distribution dist)
           
 void HLTransition.setWaitingTime(Distribution dist)
           
 

Constructors in org.processmining.exporting.petrinet.cpnexport.HLImplementation with parameters of type Distribution
HLAttribute(java.lang.String name, Distribution dist, int initVal)
          Constructor to create a fully-specified numeric data attribute.
HLDataAttributeValues(Distribution dist, int initialVal)
          Constructor to create a fully-specified numeric data attribute.
 

Uses of Distribution in org.processmining.exporting.petrinet.cpnexport.HLImplementation.HLDistribution
 

Subclasses of Distribution in org.processmining.exporting.petrinet.cpnexport.HLImplementation.HLDistribution
 class HLBernoulliDistribution
          Represents a uniform distribution that can be readily displayed as it maintains its own GUI panel.
 class HLBinomialDistribution
          Represents a bernoulli distribution that can be readily displayed as it maintains its own GUI panel.
 class HLChiSquareDistribution
          Represents a chi square distribution that can be readily displayed as it maintains its own GUI panel.
 class HLConstantDistribution
          Represents a constant distribution that can be readily displayed as it maintains its own GUI panel.
 class HLDiscreteDistribution
          Represents a discrete distribution that can be readily displayed as it maintains its own GUI panel.
 class HLErlangDistribution
          Represents an erlang distribution that can be readily displayed as it maintains its own GUI panel.
 class HLExponentialDistribution
          Represents an exponential distribution that can be readily displayed as it maintains its own GUI panel.
 class HLGeneralDistribution
          Represents a general distribution to which a lot of distribution related information can be provided, so that based on the provided information to this object separate distributions (like a HLUniformDistribution object or a HLNormalDistribution) can be provided.
 class HLNormalDistribution
          Represents a normal distribution that can be readily displayed as it maintains its own GUI panel.
 class HLPoissonDistribution
          Represents a poisson distribution that can be readily displayed as it maintains its own GUI panel.
 class HLStudentDistribution
          Represents a student distribution that can be readily displayed as it maintains its own GUI panel.
 class HLUniformDistribution
          Represents a uniform distribution that can be readily displayed as it maintains its own GUI panel.
 

Methods in org.processmining.exporting.petrinet.cpnexport.HLImplementation.HLDistribution that return types with arguments of type Distribution
 java.util.ArrayList<Distribution> HLGeneralDistribution.getDistributions()
          All possible distributions will be returned.
 

Uses of Distribution in org.processmining.framework.models.hlprocess
 

Methods in org.processmining.framework.models.hlprocess that return Distribution
 Distribution HighLevelProcess.getCaseGenerationScheme()
          Retrieves the case arrival distribution for this process.
 Distribution HighLevelActivity.getExecutionTime()
          Retrieves the distribution of the execution time for this activity.
 Distribution HighLevelDataAttribute.getPossibleValuesNumeric()
          Retrieves the possible values for the associated data attribute in the case that it is of a numeric type.
 Distribution HighLevelActivity.getSojournTime()
          Retrieves the distribution of the sojourn time for this activity.
 Distribution HighLevelActivity.getWaitingTime()
          Retrieves the distribution of the waiting time for this activity.
 

Methods in org.processmining.framework.models.hlprocess with parameters of type Distribution
 void HighLevelProcess.setCaseGenerationScheme(Distribution dist)
          Provides a case arrival distribution for this process.
 void HighLevelActivity.setExecutionTime(Distribution dist)
          Provides a distribution of the execution time for this activity.
 void HighLevelActivity.setSojournTime(Distribution dist)
          Provides a distribution of the sojourn time for this activity.
 void HighLevelActivity.setWaitingTime(Distribution dist)
          Provides a distribution of the waiting time for this activity.