public enum ACTIVATIONFUNCTION extends java.lang.Enum<ACTIVATIONFUNCTION>
Java class for ACTIVATION-FUNCTION.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ACTIVATION-FUNCTION"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="threshold"/> <enumeration value="logistic"/> <enumeration value="tanh"/> <enumeration value="identity"/> <enumeration value="exponential"/> <enumeration value="reciprocal"/> <enumeration value="square"/> <enumeration value="Gauss"/> <enumeration value="sine"/> <enumeration value="cosine"/> <enumeration value="Elliott"/> <enumeration value="arctan"/> <enumeration value="radialBasis"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ARCTAN |
COSINE |
ELLIOTT |
EXPONENTIAL |
GAUSS |
IDENTITY |
LOGISTIC |
RADIAL_BASIS |
RECIPROCAL |
SINE |
SQUARE |
TANH |
THRESHOLD |
Modifier and Type | Method and Description |
---|---|
static ACTIVATIONFUNCTION |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ACTIVATIONFUNCTION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ACTIVATIONFUNCTION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ACTIVATIONFUNCTION ARCTAN
public static final ACTIVATIONFUNCTION COSINE
public static final ACTIVATIONFUNCTION ELLIOTT
public static final ACTIVATIONFUNCTION EXPONENTIAL
public static final ACTIVATIONFUNCTION GAUSS
public static final ACTIVATIONFUNCTION IDENTITY
public static final ACTIVATIONFUNCTION LOGISTIC
public static final ACTIVATIONFUNCTION RADIAL_BASIS
public static final ACTIVATIONFUNCTION RECIPROCAL
public static final ACTIVATIONFUNCTION SINE
public static final ACTIVATIONFUNCTION SQUARE
public static final ACTIVATIONFUNCTION TANH
public static final ACTIVATIONFUNCTION THRESHOLD
public static ACTIVATIONFUNCTION[] values()
for (ACTIVATIONFUNCTION c : ACTIVATIONFUNCTION.values()) System.out.println(c);
public static ACTIVATIONFUNCTION valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static ACTIVATIONFUNCTION fromValue(java.lang.String v)