public enum DistributionFamily extends Enum<DistributionFamily>
| Enum Constant and Description |
|---|
Fisher |
Normal |
SimulationOnly |
StudentT |
| Modifier and Type | Method and Description |
|---|---|
static DistributionFamily |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistributionFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionFamily Normal
public static final DistributionFamily StudentT
public static final DistributionFamily Fisher
public static final DistributionFamily SimulationOnly
public static DistributionFamily[] values()
for (DistributionFamily c : DistributionFamily.values()) System.out.println(c);
public static DistributionFamily 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 © 2017. All rights reserved.