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