public static enum Layer.Type extends java.lang.Enum<Layer.Type>
Enum Constant and Description |
---|
CONVOLUTIONAL |
FEED_FORWARD |
MULTILAYER |
NORMALIZATION |
RECURRENT |
RECURSIVE |
SUBSAMPLING |
Modifier and Type | Method and Description |
---|---|
static Layer.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Layer.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Layer.Type FEED_FORWARD
public static final Layer.Type RECURRENT
public static final Layer.Type CONVOLUTIONAL
public static final Layer.Type SUBSAMPLING
public static final Layer.Type RECURSIVE
public static final Layer.Type MULTILAYER
public static final Layer.Type NORMALIZATION
public static Layer.Type[] values()
for (Layer.Type c : Layer.Type.values()) System.out.println(c);
public static Layer.Type 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 null