public enum LicenseErrorCode extends Enum<LicenseErrorCode>
| Enum Constant and Description |
|---|
INCOMPATIBLE_HOSTING_TYPE
The license's hosting type is incompatible with other product.
|
INCOMPATIBLE_LICENSE_TYPE
The license's type is not incompatible.
|
INCOMPATIBLE_VERSION
The license's version is not incompatible.
|
INVALID_LICENSE_KEY
The license is invalid.
|
INVALID_PRODUCT_KEY
Invalid product key value.
|
LICENSE_EXPIRED
The license is expired.
|
UNKNOWN |
USER_LIMIT_ISNOT_SET
The license's users/seats are not set or it is equal to zero.
|
WRONG_PRODUCT
The license is not for the selected product.
|
| Modifier and Type | Method and Description |
|---|---|
static LicenseErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LicenseErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseErrorCode UNKNOWN
public static final LicenseErrorCode INVALID_PRODUCT_KEY
public static final LicenseErrorCode INVALID_LICENSE_KEY
public static final LicenseErrorCode WRONG_PRODUCT
public static final LicenseErrorCode LICENSE_EXPIRED
public static final LicenseErrorCode INCOMPATIBLE_HOSTING_TYPE
public static final LicenseErrorCode INCOMPATIBLE_LICENSE_TYPE
public static final LicenseErrorCode INCOMPATIBLE_VERSION
public static final LicenseErrorCode USER_LIMIT_ISNOT_SET
public static LicenseErrorCode[] values()
for (LicenseErrorCode c : LicenseErrorCode.values()) System.out.println(c);
public static LicenseErrorCode 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 nullCopyright © 2021 Atlassian. All rights reserved.