public enum EvaluationModels extends java.lang.Enum<EvaluationModels>
| Enum Constant and Description | 
|---|
CROSS_VALIDATION  | 
PERCENTAGE_SPLIT  | 
SUPPLIED_TEST  | 
TRAINING_SET  | 
| Modifier and Type | Method and Description | 
|---|---|
static EvaluationModels | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static EvaluationModels[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final EvaluationModels TRAINING_SET
public static final EvaluationModels SUPPLIED_TEST
public static final EvaluationModels CROSS_VALIDATION
public static final EvaluationModels PERCENTAGE_SPLIT
public static EvaluationModels[] values()
for (EvaluationModels c : EvaluationModels.values()) System.out.println(c);
public static EvaluationModels 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 null