public enum OrgLicenseType extends Enum<OrgLicenseType>
Enum Constant and Description |
---|
NON_PAID
Non-paid
|
PAAS
PaaS
|
PAID
Paid
|
PARTNER
Partner
|
TRIAL
Trial
|
Modifier and Type | Method and Description |
---|---|
static OrgLicenseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrgLicenseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrgLicenseType PAID
public static final OrgLicenseType TRIAL
public static final OrgLicenseType NON_PAID
public static final OrgLicenseType PARTNER
public static final OrgLicenseType PAAS
public static OrgLicenseType[] values()
for (OrgLicenseType c : OrgLicenseType.values()) System.out.println(c);
public static OrgLicenseType 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 © 2019. All rights reserved.