public enum LicenseEdition extends java.lang.Enum<LicenseEdition>
| Enum Constant and Description |
|---|
BASIC |
ENTERPRISE |
PROFESSIONAL |
STANDARD |
UNLIMITED |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static LicenseEdition |
valueOf(java.lang.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(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 java.lang.String toString()
toString in class java.lang.Enum<LicenseEdition>Copyright © 2005-2015 Atlassian. All Rights Reserved.