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