Package org.dmg.pmml.neural_network
Enum NeuralNetwork.NormalizationMethod
- java.lang.Object
-
- java.lang.Enum<NeuralNetwork.NormalizationMethod>
-
- org.dmg.pmml.neural_network.NeuralNetwork.NormalizationMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<NeuralNetwork.NormalizationMethod>,StringValue<NeuralNetwork.NormalizationMethod>
- Enclosing class:
- NeuralNetwork
public static enum NeuralNetwork.NormalizationMethod extends java.lang.Enum<NeuralNetwork.NormalizationMethod> implements StringValue<NeuralNetwork.NormalizationMethod>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NeuralNetwork.NormalizationMethodfromValue(java.lang.String v)java.lang.StringtoString()java.lang.Stringvalue()static NeuralNetwork.NormalizationMethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static NeuralNetwork.NormalizationMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final NeuralNetwork.NormalizationMethod NONE
-
SIMPLEMAX
public static final NeuralNetwork.NormalizationMethod SIMPLEMAX
-
SOFTMAX
public static final NeuralNetwork.NormalizationMethod SOFTMAX
-
-
Method Detail
-
values
public static NeuralNetwork.NormalizationMethod[] 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 (NeuralNetwork.NormalizationMethod c : NeuralNetwork.NormalizationMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NeuralNetwork.NormalizationMethod 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 namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
- Specified by:
valuein interfaceStringValue<NeuralNetwork.NormalizationMethod>
-
fromValue
public static NeuralNetwork.NormalizationMethod fromValue(java.lang.String v)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<NeuralNetwork.NormalizationMethod>
-
-