Package org.ametys.runtime.plugin
Enum Class PluginsManager.Status
- All Implemented Interfaces:
Serializable
,Comparable<PluginsManager.Status>
,java.lang.constant.Constable
- Enclosing class:
- PluginsManager
PluginsManager status after initialization.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThere was no errors, but the configuration is incompleteThere was no errors, but the configuration is missingThere were issues during components loadingEverything is ok.The runtime.xml could not be loadedSafe mode has been forcedSomething was wrong when reading plugins definitions -
Method Summary
Modifier and TypeMethodDescriptionstatic PluginsManager.Status
Returns the enum constant of this class with the specified name.static PluginsManager.Status[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OK
Everything is ok. All features were correctly loaded -
NO_CONFIG
There was no errors, but the configuration is missing -
CONFIG_INCOMPLETE
There was no errors, but the configuration is incomplete -
WRONG_DEFINITIONS
Something was wrong when reading plugins definitions -
NOT_INITIALIZED
There were issues during components loading -
RUNTIME_NOT_LOADED
The runtime.xml could not be loaded -
SAFE_MODE_FORCED
Safe mode has been forced
-
-
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
-