public enum LicenseEdition extends Enum<LicenseEdition>
| Enum Constant and Description |
|---|
BASIC |
ENTERPRISE |
PROFESSIONAL |
STANDARD |
UNLIMITED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LicenseEdition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LicenseEdition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseEdition BASIC
public static final LicenseEdition STANDARD
public static final LicenseEdition PROFESSIONAL
public static final LicenseEdition ENTERPRISE
public static final LicenseEdition UNLIMITED
public static LicenseEdition[] values()
for (LicenseEdition c : LicenseEdition.values()) System.out.println(c);
public static LicenseEdition 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 nullpublic String toString()
toString in class Enum<LicenseEdition>Copyright © 2005–2021 Atlassian. All rights reserved.