public enum DeepWaterParametersNetwork extends java.lang.Enum<DeepWaterParametersNetwork>
| Enum Constant and Description |
|---|
alexnet |
auto |
googlenet |
inception_bn |
lenet |
resnet |
user |
vgg |
| Modifier and Type | Method and Description |
|---|---|
static DeepWaterParametersNetwork |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeepWaterParametersNetwork[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeepWaterParametersNetwork alexnet
public static final DeepWaterParametersNetwork auto
public static final DeepWaterParametersNetwork googlenet
public static final DeepWaterParametersNetwork inception_bn
public static final DeepWaterParametersNetwork lenet
public static final DeepWaterParametersNetwork resnet
public static final DeepWaterParametersNetwork user
public static final DeepWaterParametersNetwork vgg
public static DeepWaterParametersNetwork[] values()
for (DeepWaterParametersNetwork c : DeepWaterParametersNetwork.values()) System.out.println(c);
public static DeepWaterParametersNetwork 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