Enum StandardLicense
- java.lang.Object
-
- java.lang.Enum<StandardLicense>
-
- com.atlassian.confluence.it.admin.StandardLicense
-
- All Implemented Interfaces:
License
,Serializable
,Comparable<StandardLicense>
public enum StandardLicense extends Enum<StandardLicense> implements License
License constants.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
Get the key of the License.SenInformation
getSenInformation()
Information about the Support Entitlement Number (SEN) of the test licensestatic StandardLicense
valueOf(String name)
Returns the enum constant of this type with the specified name.static StandardLicense[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONF_ACADEMIC
public static final StandardLicense CONF_ACADEMIC
-
CONF_EVAL
public static final StandardLicense CONF_EVAL
-
CONF_COMM
public static final StandardLicense CONF_COMM
-
CONF_COMMUNITY
public static final StandardLicense CONF_COMMUNITY
-
CONF_OPENSOURCE
public static final StandardLicense CONF_OPENSOURCE
-
CONF_DEVELOPER
public static final StandardLicense CONF_DEVELOPER
-
CONF_DEMONSTRATION
public static final StandardLicense CONF_DEMONSTRATION
-
CONF_STARTER_V2
public static final StandardLicense CONF_STARTER_V2
-
CONF_STARTER_V2_EXPIRED
public static final StandardLicense CONF_STARTER_V2_EXPIRED
-
CONF_CLUSTER
public static final StandardLicense CONF_CLUSTER
-
CONF_EVAL_EXPIRED
public static final StandardLicense CONF_EVAL_EXPIRED
-
CONF_SEN_MISSING
public static final StandardLicense CONF_SEN_MISSING
-
CONF_V1_LICENSE
public static final StandardLicense CONF_V1_LICENSE
-
CONF_V2_LICENSE
public static final StandardLicense CONF_V2_LICENSE
-
CONF_2USER
public static final StandardLicense CONF_2USER
-
CROWD_COMM
public static final StandardLicense CROWD_COMM
-
CONF_CDC_VALID
public static final StandardLicense CONF_CDC_VALID
-
CONF_CDC_VALID_ACME
public static final StandardLicense CONF_CDC_VALID_ACME
-
CONF_TEST_RESOURCE_EVAL
public static final StandardLicense CONF_TEST_RESOURCE_EVAL
-
-
Method Detail
-
values
public static StandardLicense[] 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 (StandardLicense c : StandardLicense.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StandardLicense valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getSenInformation
public SenInformation getSenInformation()
Description copied from interface:License
Information about the Support Entitlement Number (SEN) of the test license- Specified by:
getSenInformation
in interfaceLicense
-
-