public static enum NeuralNetworkEvent.Type extends Enum<NeuralNetworkEvent.Type>
Enum Constant and Description |
---|
CALCULATED |
CONNECTION_ADDED |
CONNECTION_REMOVED |
LAYER_ADDED |
LAYER_REMOVED |
NEURON_ADDED |
NEURON_REMOVED |
Modifier and Type | Method and Description |
---|---|
static NeuralNetworkEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NeuralNetworkEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NeuralNetworkEvent.Type CALCULATED
public static final NeuralNetworkEvent.Type LAYER_ADDED
public static final NeuralNetworkEvent.Type LAYER_REMOVED
public static final NeuralNetworkEvent.Type NEURON_ADDED
public static final NeuralNetworkEvent.Type NEURON_REMOVED
public static final NeuralNetworkEvent.Type CONNECTION_ADDED
public static final NeuralNetworkEvent.Type CONNECTION_REMOVED
public static NeuralNetworkEvent.Type[] values()
for (NeuralNetworkEvent.Type c : NeuralNetworkEvent.Type.values()) System.out.println(c);
public static NeuralNetworkEvent.Type 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 © 2017 Neuroph Project. All rights reserved.