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