com.atlassian.extras.api
Enum LicenseType
java.lang.Object
java.lang.Enum<LicenseType>
com.atlassian.extras.api.LicenseType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<LicenseType>
public enum LicenseType
- extends java.lang.Enum<LicenseType>
|
Method Summary |
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. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ACADEMIC
public static final LicenseType ACADEMIC
COMMERCIAL
public static final LicenseType COMMERCIAL
COMMUNITY
public static final LicenseType COMMUNITY
DEMONSTRATION
public static final LicenseType DEMONSTRATION
DEVELOPER
public static final LicenseType DEVELOPER
NON_PROFIT
public static final LicenseType NON_PROFIT
OPEN_SOURCE
public static final LicenseType OPEN_SOURCE
PERSONAL
public static final LicenseType PERSONAL
STARTER
public static final LicenseType STARTER
HOSTED
public static final LicenseType HOSTED
TESTING
public static final LicenseType TESTING
values
public static LicenseType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (LicenseType c : LicenseType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static LicenseType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Enum<LicenseType>
Copyright © 2005-2014 Atlassian. All Rights Reserved.