public static enum Convolution3D.DataFormat extends Enum<Convolution3D.DataFormat>
Modifier and Type | Method and Description |
---|---|
static Convolution3D.DataFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Convolution3D.DataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Convolution3D.DataFormat NCDHW
public static final Convolution3D.DataFormat NDHWC
public static Convolution3D.DataFormat[] values()
for (Convolution3D.DataFormat c : Convolution3D.DataFormat.values()) System.out.println(c);
public static Convolution3D.DataFormat 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.