org.encog.neural.prune
public enum NetworkPattern extends Enum<NetworkPattern>
Enum Constant and Description |
---|
Elman
Elman.
|
Jordan
Jordan.
|
MultiLayerFeedforward
Multilayer feedforward.
|
Modifier and Type | Method and Description |
---|---|
static NetworkPattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NetworkPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetworkPattern MultiLayerFeedforward
public static final NetworkPattern Elman
public static final NetworkPattern Jordan
public static NetworkPattern[] values()
for (NetworkPattern c : NetworkPattern.values()) System.out.println(c);
public static NetworkPattern valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2014. All Rights Reserved.