Enum EPluginUpdateAvailability

    • Enum Constant Detail

      • UPDATE_AVAILABLE

        public static final EPluginUpdateAvailability UPDATE_AVAILABLE
        A updated version of this plugin is available in proma.
      • NO_UPDATE_AVAILABLE

        public static final EPluginUpdateAvailability NO_UPDATE_AVAILABLE
        The current plugin version is up to date and no newer version was found in proma.
      • MANUAL_ASSIGNMENT_REQUIRED

        public static final EPluginUpdateAvailability MANUAL_ASSIGNMENT_REQUIRED
        There are two plugins in proma which has the same plugin jars. Therefore, a manual assigning by the user is necessary.
      • UNKNOWN

        public static final EPluginUpdateAvailability UNKNOWN
        The plugin was not found in proma and has no update availability information, but it does have the PluginManifest entry of "Plugin-Repository: 'xfc-proma'", so it should be available in the proma plugin store.
      • UNSYNCHED

        public static final EPluginUpdateAvailability UNSYNCHED
        The plugin was not found in proma and has no update availability information. It does not have the PluginManifest entry of "Plugin-Repository: 'xfc-proma'", so it is not an official plugin from the proma plugin store.
      • NOT_LICENSED

        public static final EPluginUpdateAvailability NOT_LICENSED
        The plugin was found, but the proma plugin is not licensed in the installed product license.
    • Method Detail

      • values

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

        public static EPluginUpdateAvailability 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