|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<WizardMethodType>
org.encog.app.analyst.wizard.WizardMethodType
public enum WizardMethodType
The machine learning method that the Encog Analyst Wizard should use.
Enum Constant Summary | |
---|---|
BayesianNetwork
Bayesian network. |
|
EPL
Encog Program |
|
FeedForward
Feed forward network. |
|
NEAT
NEAT network. |
|
PNN
PNN neural network. |
|
RBF
RBF network. |
|
SOM
SOM neural network. |
|
SVM
SVM network. |
Method Summary | |
---|---|
static WizardMethodType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static WizardMethodType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final WizardMethodType FeedForward
public static final WizardMethodType RBF
public static final WizardMethodType SVM
public static final WizardMethodType NEAT
public static final WizardMethodType PNN
public static final WizardMethodType SOM
public static final WizardMethodType BayesianNetwork
public static final WizardMethodType EPL
Method Detail |
---|
public static WizardMethodType[] values()
for (WizardMethodType c : WizardMethodType.values()) System.out.println(c);
public static WizardMethodType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |