Package com.inet.plugin
Enum Class ServerPluginManager.PluginLoadFailCause
java.lang.Object
java.lang.Enum<ServerPluginManager.PluginLoadFailCause>
com.inet.plugin.ServerPluginManager.PluginLoadFailCause
- All Implemented Interfaces:
Serializable
,Comparable<ServerPluginManager.PluginLoadFailCause>
,Constable
- Enclosing class:
- ServerPluginManager
public static enum ServerPluginManager.PluginLoadFailCause
extends Enum<ServerPluginManager.PluginLoadFailCause>
Possible cause why a plugin was not loaded.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptiona dependency is missingplugin is disabledplugin was filter in the current runtimeplugin is for a different version -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FILTER
plugin was filter in the current runtime -
DISABLED
plugin is disabled -
VERSION
plugin is for a different version -
DEPENDENCY
a dependency is missing
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-