public enum DistributionType extends java.lang.Enum<DistributionType>
Enum Constant and Description |
---|
Beta |
Constant |
Erlang |
Gamma |
LogNormal |
NegativeExponential |
Normal |
Uniform |
Weibull |
Modifier and Type | Method and Description |
---|---|
static DistributionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DistributionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionType NegativeExponential
public static final DistributionType Beta
public static final DistributionType Normal
public static final DistributionType Erlang
public static final DistributionType Gamma
public static final DistributionType Uniform
public static final DistributionType Constant
public static final DistributionType Weibull
public static final DistributionType LogNormal
public static DistributionType[] values()
for (DistributionType c : DistributionType.values()) System.out.println(c);
public static DistributionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null