Enum LicenseEdition

    • Enum Constant Detail

      • COMMUNITY

        public static final LicenseEdition COMMUNITY
        The open source edition of HiveMQ.
        Since:
        4.2.0, CE 2020.1
      • TRIAL

        public static final LicenseEdition TRIAL
        An otherwise commercial instance of HiveMQ that is running without a license file.
        Since:
        4.2.0, CE 2020.1
      • PROFESSIONAL

        public static final LicenseEdition PROFESSIONAL
        Professional edition of HiveMQ.
        Since:
        4.2.0, CE 2020.1
      • ENTERPRISE

        public static final LicenseEdition ENTERPRISE
        Enterprise edition of HiveMQ.
        Since:
        4.2.0, CE 2020.1
    • Method Detail

      • values

        public static LicenseEdition[] 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 (LicenseEdition c : LicenseEdition.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LicenseEdition 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 name
        NullPointerException - if the argument is null