org.neuroph.util
Enum NeuralNetworkType
java.lang.Object
java.lang.Enum<NeuralNetworkType>
org.neuroph.util.NeuralNetworkType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<NeuralNetworkType>
public enum NeuralNetworkType
- extends java.lang.Enum<NeuralNetworkType>
Contains neural network types and labels.
Method Summary |
java.lang.String |
getTypeLabel()
|
static NeuralNetworkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NeuralNetworkType[] |
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 |
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
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getTypeLabel
public java.lang.String getTypeLabel()