Package org.ametys.runtime.plugin
Enum Class PluginsManager.InactivityCause
java.lang.Object
java.lang.Enum<PluginsManager.InactivityCause>
org.ametys.runtime.plugin.PluginsManager.InactivityCause
- All Implemented Interfaces:
Serializable
,Comparable<PluginsManager.InactivityCause>
,java.lang.constant.Constable
- Enclosing class:
- PluginsManager
Cause of the deactivation of a feature
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionConstant for features disabled due to not chosen componentConstant for features deactivated by other featuresConstant for features disabled due to missing dependenciesConstant for excluded featuresConstant for features disabled to wrong referenced extension pointFeature is not safe while in safe modeConstant for features overridden by another featureConstant for passive features that are not necessary (nobody depends on it)Constant for features not enabled byIncludePolicyFeatureActivator
(the feature is not needed as no enabled feature depends on it) -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static PluginsManager.InactivityCause[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXCLUDED
Constant for excluded features -
DEACTIVATED
Constant for features deactivated by other features -
OVERRIDDEN
Constant for features overridden by another feature -
COMPONENT
Constant for features disabled due to not chosen component -
DEPENDENCY
Constant for features disabled due to missing dependencies -
PASSIVE
Constant for passive features that are not necessary (nobody depends on it) -
INVALID_POINT
Constant for features disabled to wrong referenced extension point -
NOT_SAFE
Feature is not safe while in safe mode -
UNUSED
Constant for features not enabled byIncludePolicyFeatureActivator
(the feature is not needed as no enabled feature depends on it)
-
-
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
-