public static enum StochasticNet.DistributionType extends java.lang.Enum<StochasticNet.DistributionType>
Enum Constant and Description |
---|
ARMA_SERIES |
BERNSTEIN_EXPOLYNOMIAL |
BETA |
DETERMINISTIC |
EXPONENTIAL |
GAMMA |
GAUSSIAN_KERNEL |
HISTOGRAM |
IMMEDIATE |
LOGNORMAL |
LOGSPLINE |
NORMAL |
SINUSOIDAL_SERIES |
STUDENT_T |
UNDEFINED |
UNIFORM |
WEIBULL |
Modifier and Type | Method and Description |
---|---|
static StochasticNet.DistributionType |
fromString(java.lang.String text) |
static StochasticNet.DistributionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StochasticNet.DistributionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StochasticNet.DistributionType BETA
public static final StochasticNet.DistributionType EXPONENTIAL
public static final StochasticNet.DistributionType NORMAL
public static final StochasticNet.DistributionType LOGNORMAL
public static final StochasticNet.DistributionType GAMMA
public static final StochasticNet.DistributionType STUDENT_T
public static final StochasticNet.DistributionType UNIFORM
public static final StochasticNet.DistributionType WEIBULL
public static final StochasticNet.DistributionType GAUSSIAN_KERNEL
public static final StochasticNet.DistributionType HISTOGRAM
public static final StochasticNet.DistributionType LOGSPLINE
public static final StochasticNet.DistributionType BERNSTEIN_EXPOLYNOMIAL
public static final StochasticNet.DistributionType IMMEDIATE
public static final StochasticNet.DistributionType DETERMINISTIC
public static final StochasticNet.DistributionType SINUSOIDAL_SERIES
public static final StochasticNet.DistributionType ARMA_SERIES
public static final StochasticNet.DistributionType UNDEFINED
public static StochasticNet.DistributionType[] values()
for (StochasticNet.DistributionType c : StochasticNet.DistributionType.values()) System.out.println(c);
public static StochasticNet.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 nullpublic static StochasticNet.DistributionType fromString(java.lang.String text)