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