public enum LicenseType extends 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 |
|---|---|
String |
toString() |
static LicenseType |
valueOf(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(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<LicenseType>Copyright © 2005–2021 Atlassian. All rights reserved.