org.processmining.framework.models.hlprocess
Enum Distribution.DistributionEnum

java.lang.Object
  extended by java.lang.Enum<Distribution.DistributionEnum>
      extended by org.processmining.framework.models.hlprocess.Distribution.DistributionEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Distribution.DistributionEnum>
Enclosing class:
Distribution

public static enum Distribution.DistributionEnum
extends java.lang.Enum<Distribution.DistributionEnum>

Defines which kinds of distributions are available.


Enum Constant Summary
BERNOULLI_DISTRIBUTION
           
BINOMIAL_DISTRIBUTION
           
CHISQUARE_DISTRIBUTION
           
CONSTANT_DISTRIBUTION
           
DISCRETE_DISTRIBUTION
           
ERLANG_DISTRIBUTION
           
EXPONENTIAL_DISTRIBUTION
           
NORMAL_DISTRIBUTION
           
POISSON_DISTRIBUTION
           
STUDENT_DISTRIBUTION
           
UNIFORM_DISTRIBUTION
           
 
Method Summary
 java.lang.String distributionName()
           
static Distribution.DistributionEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Distribution.DistributionEnum[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NORMAL_DISTRIBUTION

public static final Distribution.DistributionEnum NORMAL_DISTRIBUTION

UNIFORM_DISTRIBUTION

public static final Distribution.DistributionEnum UNIFORM_DISTRIBUTION

CONSTANT_DISTRIBUTION

public static final Distribution.DistributionEnum CONSTANT_DISTRIBUTION

DISCRETE_DISTRIBUTION

public static final Distribution.DistributionEnum DISCRETE_DISTRIBUTION

EXPONENTIAL_DISTRIBUTION

public static final Distribution.DistributionEnum EXPONENTIAL_DISTRIBUTION

BERNOULLI_DISTRIBUTION

public static final Distribution.DistributionEnum BERNOULLI_DISTRIBUTION

BINOMIAL_DISTRIBUTION

public static final Distribution.DistributionEnum BINOMIAL_DISTRIBUTION

CHISQUARE_DISTRIBUTION

public static final Distribution.DistributionEnum CHISQUARE_DISTRIBUTION

ERLANG_DISTRIBUTION

public static final Distribution.DistributionEnum ERLANG_DISTRIBUTION

POISSON_DISTRIBUTION

public static final Distribution.DistributionEnum POISSON_DISTRIBUTION

STUDENT_DISTRIBUTION

public static final Distribution.DistributionEnum STUDENT_DISTRIBUTION
Method Detail

values

public static final Distribution.DistributionEnum[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Distribution.DistributionEnum c : Distribution.DistributionEnum.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static Distribution.DistributionEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

distributionName

public java.lang.String distributionName()