public enum LicenseMode extends java.lang.Enum<LicenseMode> implements java.io.Serializable
| Enum Constant and Description |
|---|
Activated
The module is licensed, possibly with restrictions.
|
Free
The module is a free module
|
Trial
The module is not free and is not activated: is in a temporary trial period.
|
| Modifier and Type | Method and Description |
|---|---|
static LicenseMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LicenseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseMode Free
public static final LicenseMode Trial
public static final LicenseMode Activated
public static LicenseMode[] values()
for (LicenseMode c : LicenseMode.values()) System.out.println(c);
public static LicenseMode 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