public enum InitializationMethod extends Enum<InitializationMethod>
| Enum Constant and Description | 
|---|
AUTO
Automatically select the best algorithm. 
 | 
CLUSTERING
An iterative clustering algorithm is used, which picks cases that are different from each other. 
 | 
SAMPLING
Cases are selected at random to initialize distributions. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static InitializationMethod | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static InitializationMethod[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final InitializationMethod AUTO
public static final InitializationMethod SAMPLING
public static final InitializationMethod CLUSTERING
public static InitializationMethod[] values()
for (InitializationMethod c : InitializationMethod.values()) System.out.println(c);
public static InitializationMethod 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 © 2021. All rights reserved.