public enum ELicenseType extends java.lang.Enum<ELicenseType>
| Enum Constant and Description |
|---|
LimitedUseDelayedActivation |
NoLicense |
RecurringCharge |
RecurringChargeLimitedUse |
RecurringChargeLimitedUseWithOverages |
RecurringOption |
SinglePurchase |
SinglePurchaseLimitedUse |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static ELicenseType |
from(int code) |
static ELicenseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ELicenseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ELicenseType NoLicense
public static final ELicenseType SinglePurchase
public static final ELicenseType SinglePurchaseLimitedUse
public static final ELicenseType RecurringCharge
public static final ELicenseType RecurringChargeLimitedUse
public static final ELicenseType RecurringChargeLimitedUseWithOverages
public static final ELicenseType RecurringOption
public static final ELicenseType LimitedUseDelayedActivation
public static ELicenseType[] values()
for (ELicenseType c : ELicenseType.values()) System.out.println(c);
public static ELicenseType 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 nullpublic int code()
public static ELicenseType from(int code)