Enum LicenseEdition
- All Implemented Interfaces:
Serializable,Comparable<LicenseEdition>,Constable
public enum LicenseEdition extends Enum<LicenseEdition>
The enum represents the edition for which HiveMQ is licensed.
- Since:
- 4.2.0, CE 2020.1
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description COMMUNITYThe open source edition of HiveMQ.ENTERPRISEEnterprise edition of HiveMQ.PROFESSIONALProfessional edition of HiveMQ.TRIALAn otherwise commercial instance of HiveMQ that is running without a license file. -
Method Summary
Modifier and Type Method Description static LicenseEditionvalueOf(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.
-
Enum Constant Details
-
COMMUNITY
The open source edition of HiveMQ.- Since:
- 4.2.0, CE 2020.1
-
TRIAL
An otherwise commercial instance of HiveMQ that is running without a license file.- Since:
- 4.2.0, CE 2020.1
-
PROFESSIONAL
Professional edition of HiveMQ.- Since:
- 4.2.0, CE 2020.1
-
ENTERPRISE
Enterprise edition of HiveMQ.- Since:
- 4.2.0, CE 2020.1
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-