public static enum DeepWaterParameters.Backend extends java.lang.Enum<DeepWaterParameters.Backend>
Enum Constant and Description |
---|
caffe |
mxnet |
tensorflow |
unknown |
xgrpc |
Modifier and Type | Method and Description |
---|---|
static DeepWaterParameters.Backend |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeepWaterParameters.Backend[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeepWaterParameters.Backend unknown
public static final DeepWaterParameters.Backend mxnet
public static final DeepWaterParameters.Backend caffe
public static final DeepWaterParameters.Backend tensorflow
public static final DeepWaterParameters.Backend xgrpc
public static DeepWaterParameters.Backend[] values()
for (DeepWaterParameters.Backend c : DeepWaterParameters.Backend.values()) System.out.println(c);
public static DeepWaterParameters.Backend 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