public enum LicenseFeature extends java.lang.Enum<LicenseFeature>
Enum Constant and Description |
---|
DFD
Deepfake detection functionality.
|
PAD
Presentation attack detection functionality.
|
Modifier and Type | Method and Description |
---|---|
static LicenseFeature |
fromCode(int code) |
static LicenseFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LicenseFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseFeature PAD
public static final LicenseFeature DFD
public static LicenseFeature[] values()
for (LicenseFeature c : LicenseFeature.values()) System.out.println(c);
public static LicenseFeature 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 LicenseFeature fromCode(int code)