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