Package de.xima.fc.mdl.enums
Enum EPluginUpdateAvailability
- All Implemented Interfaces:
Serializable
,Comparable<EPluginUpdateAvailability>
Enumeration of the plugin update availability status which is determined through proma.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThere are two plugins in proma which has the same plugin jars.The current plugin version is up to date and no newer version was found in proma.The plugin was found, but the proma plugin is not licensed in the installed product license.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.The plugin was not found in proma and has no update availability information.A updated version of this plugin is available in proma. -
Method Summary
Modifier and TypeMethodDescriptionstatic EPluginUpdateAvailability
Returns the enum constant of this type with the specified name.static EPluginUpdateAvailability[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UPDATE_AVAILABLE
A updated version of this plugin is available in proma. -
NO_UPDATE_AVAILABLE
The current plugin version is up to date and no newer version was found in proma. -
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
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
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
The plugin was found, but the proma plugin is not licensed in the installed product license.
-
-
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
-