Package de.xima.fc.mdl.enums
Enum EPluginUpdateAvailability
- java.lang.Object
- 
- java.lang.Enum<EPluginUpdateAvailability>
- 
- de.xima.fc.mdl.enums.EPluginUpdateAvailability
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<EPluginUpdateAvailability>
 
 public enum EPluginUpdateAvailability extends Enum<EPluginUpdateAvailability> Enumeration of the plugin update availability status which is determined through proma.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description MANUAL_ASSIGNMENT_REQUIREDThere are two plugins in proma which has the same plugin jars.NO_UPDATE_AVAILABLEThe current plugin version is up to date and no newer version was found in proma.NOT_LICENSEDThe plugin was found, but the proma plugin is not licensed in the installed product license.UNKNOWNThe 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.UNSYNCHEDThe plugin was not found in proma and has no update availability information.UPDATE_AVAILABLEA updated version of this plugin is available in proma.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static EPluginUpdateAvailabilityvalueOf(String name)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 Detail- 
UPDATE_AVAILABLEpublic static final EPluginUpdateAvailability UPDATE_AVAILABLE A updated version of this plugin is available in proma.
 - 
NO_UPDATE_AVAILABLEpublic static final EPluginUpdateAvailability NO_UPDATE_AVAILABLE The current plugin version is up to date and no newer version was found in proma.
 - 
MANUAL_ASSIGNMENT_REQUIREDpublic 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.
 - 
UNKNOWNpublic 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.
 - 
UNSYNCHEDpublic 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_LICENSEDpublic static final EPluginUpdateAvailability NOT_LICENSED The plugin was found, but the proma plugin is not licensed in the installed product license.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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
 
 
- 
 
-