Enum StochasticNet.DistributionType
- java.lang.Object
-
- java.lang.Enum<StochasticNet.DistributionType>
-
- org.processmining.models.graphbased.directed.petrinet.StochasticNet.DistributionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StochasticNet.DistributionType>
- Enclosing interface:
- StochasticNet
public static enum StochasticNet.DistributionType extends java.lang.Enum<StochasticNet.DistributionType>
Supported parametric and non-parametric distributions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARMA_SERIESBERNSTEIN_EXPOLYNOMIALBETADETERMINISTICEXPONENTIALGAMMAGAUSSIAN_KERNELHISTOGRAMIMMEDIATELOGNORMALLOGSPLINENORMALSINUSOIDAL_SERIESSTUDENT_TUNDEFINEDUNIFORMWEIBULL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StochasticNet.DistributionTypefromString(java.lang.String text)static StochasticNet.DistributionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StochasticNet.DistributionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BETA
public static final StochasticNet.DistributionType BETA
-
EXPONENTIAL
public static final StochasticNet.DistributionType EXPONENTIAL
-
NORMAL
public static final StochasticNet.DistributionType NORMAL
-
LOGNORMAL
public static final StochasticNet.DistributionType LOGNORMAL
-
GAMMA
public static final StochasticNet.DistributionType GAMMA
-
STUDENT_T
public static final StochasticNet.DistributionType STUDENT_T
-
UNIFORM
public static final StochasticNet.DistributionType UNIFORM
-
WEIBULL
public static final StochasticNet.DistributionType WEIBULL
-
GAUSSIAN_KERNEL
public static final StochasticNet.DistributionType GAUSSIAN_KERNEL
-
HISTOGRAM
public static final StochasticNet.DistributionType HISTOGRAM
-
LOGSPLINE
public static final StochasticNet.DistributionType LOGSPLINE
-
BERNSTEIN_EXPOLYNOMIAL
public static final StochasticNet.DistributionType BERNSTEIN_EXPOLYNOMIAL
-
IMMEDIATE
public static final StochasticNet.DistributionType IMMEDIATE
-
DETERMINISTIC
public static final StochasticNet.DistributionType DETERMINISTIC
-
SINUSOIDAL_SERIES
public static final StochasticNet.DistributionType SINUSOIDAL_SERIES
-
ARMA_SERIES
public static final StochasticNet.DistributionType ARMA_SERIES
-
UNDEFINED
public static final StochasticNet.DistributionType UNDEFINED
-
-
Method Detail
-
values
public static StochasticNet.DistributionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StochasticNet.DistributionType c : StochasticNet.DistributionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StochasticNet.DistributionType 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 namejava.lang.NullPointerException- if the argument is null
-
fromString
public static StochasticNet.DistributionType fromString(java.lang.String text)
-
-