org.neuroph.util
Enum NeuralNetworkType
java.lang.Object
java.lang.Enum<NeuralNetworkType>
org.neuroph.util.NeuralNetworkType
- All Implemented Interfaces:
- Serializable, Comparable<NeuralNetworkType>
public enum NeuralNetworkType
- extends Enum<NeuralNetworkType>
Contains neural network types and labels.
ADALINE
public static final NeuralNetworkType ADALINE
PERCEPTRON
public static final NeuralNetworkType PERCEPTRON
MULTI_LAYER_PERCEPTRON
public static final NeuralNetworkType MULTI_LAYER_PERCEPTRON
HOPFIELD
public static final NeuralNetworkType HOPFIELD
KOHONEN
public static final NeuralNetworkType KOHONEN
NEURO_FUZZY_REASONER
public static final NeuralNetworkType NEURO_FUZZY_REASONER
SUPERVISED_HEBBIAN_NET
public static final NeuralNetworkType SUPERVISED_HEBBIAN_NET
UNSUPERVISED_HEBBIAN_NET
public static final NeuralNetworkType UNSUPERVISED_HEBBIAN_NET
COMPETITIVE
public static final NeuralNetworkType COMPETITIVE
MAXNET
public static final NeuralNetworkType MAXNET
INSTAR
public static final NeuralNetworkType INSTAR
OUTSTAR
public static final NeuralNetworkType OUTSTAR
RBF_NETWORK
public static final NeuralNetworkType RBF_NETWORK
BAM
public static final NeuralNetworkType BAM
BOLTZMAN
public static final NeuralNetworkType BOLTZMAN
COUNTERPROPAGATION
public static final NeuralNetworkType COUNTERPROPAGATION
INSTAR_OUTSTAR
public static final NeuralNetworkType INSTAR_OUTSTAR
PCA_NETWORK
public static final NeuralNetworkType PCA_NETWORK
RECOMMENDER
public static final NeuralNetworkType RECOMMENDER
values
public static NeuralNetworkType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (NeuralNetworkType c : NeuralNetworkType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static NeuralNetworkType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
getTypeLabel
public String getTypeLabel()
Copyright © 2012. All Rights Reserved.