public static enum LearnerParameters.LearningMode extends Enum<LearnerParameters.LearningMode>
Enum Constant and Description |
---|
CV |
Perceptron |
SSVM |
Modifier and Type | Method and Description |
---|---|
static LearnerParameters.LearningMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LearnerParameters.LearningMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LearnerParameters.LearningMode SSVM
public static final LearnerParameters.LearningMode CV
public static final LearnerParameters.LearningMode Perceptron
public static LearnerParameters.LearningMode[] values()
for (LearnerParameters.LearningMode c : LearnerParameters.LearningMode.values()) System.out.println(c);
public static LearnerParameters.LearningMode 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 © 2017. All rights reserved.