public static enum INeuron.Type extends Enum<INeuron.Type>
| Enum Constant and Description |
|---|
EXCITATORY |
INHIBITORY |
META |
| Modifier and Type | Method and Description |
|---|---|
static INeuron.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static INeuron.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final INeuron.Type EXCITATORY
public static final INeuron.Type INHIBITORY
public static final INeuron.Type META
public static INeuron.Type[] values()
for (INeuron.Type c : INeuron.Type.values()) System.out.println(c);
public static INeuron.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 © 2018. All rights reserved.