public enum RandomDistributionType extends Enum<RandomDistributionType>
| Enum Constant and Description |
|---|
BooleanDensityUniform |
Composite |
Discrete |
LogNormal |
Normal |
PositiveNormal |
Repeated |
Uniform |
UniformDiscrete |
| Modifier and Type | Method and Description |
|---|---|
static RandomDistributionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RandomDistributionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RandomDistributionType Uniform
public static final RandomDistributionType Normal
public static final RandomDistributionType LogNormal
public static final RandomDistributionType PositiveNormal
public static final RandomDistributionType Discrete
public static final RandomDistributionType Composite
public static final RandomDistributionType Repeated
public static final RandomDistributionType BooleanDensityUniform
public static final RandomDistributionType UniformDiscrete
public static RandomDistributionType[] values()
for (RandomDistributionType c : RandomDistributionType.values()) System.out.println(c);
public static RandomDistributionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All Rights Reserved.