public static enum BaseCalc.distribution_t extends Enum<BaseCalc.distribution_t>
Modifier and Type | Method and Description |
---|---|
static BaseCalc.distribution_t |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseCalc.distribution_t[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseCalc.distribution_t BINOMIAL
public static final BaseCalc.distribution_t POISSON
public static final BaseCalc.distribution_t EXACT
public static BaseCalc.distribution_t[] values()
for (BaseCalc.distribution_t c : BaseCalc.distribution_t.values()) System.out.println(c);
public static BaseCalc.distribution_t 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.