public static enum GaussianMixtureModelEM.UpdateOptions extends Enum<GaussianMixtureModelEM.UpdateOptions>
Enum Constant and Description |
---|
Covariances
Update the covariances
|
Means
Update the means
|
Weights
Update the weights
|
Modifier and Type | Method and Description |
---|---|
static GaussianMixtureModelEM.UpdateOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GaussianMixtureModelEM.UpdateOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GaussianMixtureModelEM.UpdateOptions Means
public static final GaussianMixtureModelEM.UpdateOptions Weights
public static final GaussianMixtureModelEM.UpdateOptions Covariances
public static GaussianMixtureModelEM.UpdateOptions[] values()
for (GaussianMixtureModelEM.UpdateOptions c : GaussianMixtureModelEM.UpdateOptions.values()) System.out.println(c);
public static GaussianMixtureModelEM.UpdateOptions 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 null