public enum LicenseType extends java.lang.Enum<LicenseType>
| Enum Constant and Description |
|---|
ACADEMIC |
COMMERCIAL |
COMMUNITY |
DEMONSTRATION |
DEVELOPER |
HOSTED |
NON_PROFIT |
OPEN_SOURCE |
PERSONAL |
STARTER |
TESTING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static LicenseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LicenseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseType ACADEMIC
public static final LicenseType COMMERCIAL
public static final LicenseType COMMUNITY
public static final LicenseType DEMONSTRATION
public static final LicenseType DEVELOPER
public static final LicenseType NON_PROFIT
public static final LicenseType OPEN_SOURCE
public static final LicenseType PERSONAL
public static final LicenseType STARTER
public static final LicenseType HOSTED
public static final LicenseType TESTING
public static LicenseType[] values()
for (LicenseType c : LicenseType.values()) System.out.println(c);
public static LicenseType 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<LicenseType>Copyright © 2005-2015 Atlassian. All Rights Reserved.