public static enum PluginIssue.PluginIssueCode extends Enum<PluginIssue.PluginIssueCode>
| Enum Constant and Description | 
|---|
BUNDLED_PLUGIN_NOT_PRESENT
A plugin referenced in a jar file has no corresponding plugin.xml 
 | 
CIRCULAR_DEPENDENCY
Circular dependency detected on a feature. 
 | 
CLASSNOTFOUND
A class referenced by an extension point, extension or component does not exist. 
 | 
COMPONENT_ALREADY_EXIST
A component with the same role is alredy declared. 
 | 
COMPONENT_NOT_DECLARED
A component role is required to point to a specific component id which doesn't actually exist. 
 | 
CONFIGURATION_UNREADABLE
A plugin.xml is not valid against the schema. 
 | 
EXTENSION_ALREADY_EXIST
An extension to the same point is alredy declared with the same id. 
 | 
EXTENSIONPOINT_ALREADY_EXIST
An extension point is already declared in another plugin. 
 | 
EXTENSIONPOINT_CLASS_INVALID
An extension point's class does not implement  
ExtensionPoint. | 
EXTERNAL_CONFIGURATION
Unable to load an external configuration file. 
 | 
INIT_CLASS_INVALID
The application Init class does not implement  
Init. | 
INVALID_POINT
An extension refers to a non-existing point. 
 | 
PLUGIN_NAME_EXIST
A plugin with this name is already declared. 
 | 
PLUGIN_NAME_INVALID
The plugin name does not match the regexp. 
 | 
PLUGIN_NOFILE
There's no plugin.xml in the specified directory. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static PluginIssue.PluginIssueCode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static PluginIssue.PluginIssueCode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PluginIssue.PluginIssueCode BUNDLED_PLUGIN_NOT_PRESENT
public static final PluginIssue.PluginIssueCode PLUGIN_NAME_INVALID
public static final PluginIssue.PluginIssueCode PLUGIN_NOFILE
public static final PluginIssue.PluginIssueCode PLUGIN_NAME_EXIST
public static final PluginIssue.PluginIssueCode CONFIGURATION_UNREADABLE
public static final PluginIssue.PluginIssueCode EXTENSIONPOINT_ALREADY_EXIST
public static final PluginIssue.PluginIssueCode EXTENSION_ALREADY_EXIST
public static final PluginIssue.PluginIssueCode COMPONENT_ALREADY_EXIST
public static final PluginIssue.PluginIssueCode CLASSNOTFOUND
public static final PluginIssue.PluginIssueCode EXTENSIONPOINT_CLASS_INVALID
ExtensionPoint.public static final PluginIssue.PluginIssueCode COMPONENT_NOT_DECLARED
public static final PluginIssue.PluginIssueCode CIRCULAR_DEPENDENCY
public static final PluginIssue.PluginIssueCode EXTERNAL_CONFIGURATION
public static final PluginIssue.PluginIssueCode INIT_CLASS_INVALID
Init.public static final PluginIssue.PluginIssueCode INVALID_POINT
public static PluginIssue.PluginIssueCode[] values()
for (PluginIssue.PluginIssueCode c : PluginIssue.PluginIssueCode.values()) System.out.println(c);
public static PluginIssue.PluginIssueCode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null