public enum RandomDistributionType extends java.lang.Enum<RandomDistributionType>
| Enum Constant and Description |
|---|
FIXED_GRID |
GAUSSIAN |
INVERSE_GAUSSIAN |
JITTERED_GRID |
SINGLE_VALUED |
TRIANGLE |
UNIFORM |
| Modifier and Type | Method and Description |
|---|---|
static RandomDistributionType |
valueOf(java.lang.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 SINGLE_VALUED
public static final RandomDistributionType UNIFORM
public static final RandomDistributionType GAUSSIAN
public static final RandomDistributionType INVERSE_GAUSSIAN
public static final RandomDistributionType FIXED_GRID
public static final RandomDistributionType JITTERED_GRID
public static final RandomDistributionType TRIANGLE
public static RandomDistributionType[] values()
for (RandomDistributionType c : RandomDistributionType.values()) System.out.println(c);
public static RandomDistributionType 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