public static enum MultiLayerNetwork.Aggregation extends Enum<MultiLayerNetwork.Aggregation>
| Modifier and Type | Method and Description |
|---|---|
static MultiLayerNetwork.Aggregation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultiLayerNetwork.Aggregation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiLayerNetwork.Aggregation MEAN
public static final MultiLayerNetwork.Aggregation SUM
public static MultiLayerNetwork.Aggregation[] values()
for (MultiLayerNetwork.Aggregation c : MultiLayerNetwork.Aggregation.values()) System.out.println(c);
public static MultiLayerNetwork.Aggregation 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 © 2015 Java Data Mining Package. All rights reserved.