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