public static enum LicenseChanged.Type extends Enum<LicenseChanged.Type>
| Enum Constant and Description |
|---|
EXPIRED
The license has expired.
|
INVALID
The license is invalid.
|
RENEWAL
The license has been renewed, meaning the new license is identical to the previous license
except that the expiration date has been extended.
|
UPDATED
The license has been updated with more changes than just the expiration date.
|
| Modifier and Type | Method and Description |
|---|---|
static LicenseChanged.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LicenseChanged.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseChanged.Type EXPIRED
public static final LicenseChanged.Type INVALID
public static final LicenseChanged.Type UPDATED
public static final LicenseChanged.Type RENEWAL
public static LicenseChanged.Type[] values()
for (LicenseChanged.Type c : LicenseChanged.Type.values()) System.out.println(c);
public static LicenseChanged.Type 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 null