public enum CrowdLicenseType extends Enum<CrowdLicenseType>
| Enum Constant and Description |
|---|
DATA_CENTER |
SERVER |
| Modifier and Type | Method and Description |
|---|---|
static CrowdLicenseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrowdLicenseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrowdLicenseType SERVER
public static final CrowdLicenseType DATA_CENTER
public static CrowdLicenseType[] values()
for (CrowdLicenseType c : CrowdLicenseType.values()) System.out.println(c);
public static CrowdLicenseType 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 © 2022 Atlassian. All rights reserved.