Package org.eclipse.osgi.container
Enum Class ModuleContainerAdaptor.ModuleEvent
java.lang.Object
java.lang.Enum<ModuleContainerAdaptor.ModuleEvent>
org.eclipse.osgi.container.ModuleContainerAdaptor.ModuleEvent
- All Implemented Interfaces:
Serializable
,Comparable<ModuleContainerAdaptor.ModuleEvent>
,Constable
- Enclosing class:
- ModuleContainerAdaptor
public static enum ModuleContainerAdaptor.ModuleEvent
extends Enum<ModuleContainerAdaptor.ModuleEvent>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe module has been installedThe module has been activated with the lazy activation policy and is waiting atrigger
class load.The module has been resolved.The module has beens started.The module is about to be activated.The module has been stopped.The module is about to be deactivated.The module has been uninstalled.The module has been unresolved.The module has been updated. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ModuleContainerAdaptor.ModuleEvent[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTALLED
The module has been installed -
LAZY_ACTIVATION
The module has been activated with the lazy activation policy and is waiting atrigger
class load. -
RESOLVED
The module has been resolved. -
STARTED
The module has beens started. -
STARTING
The module is about to be activated. -
STOPPED
The module has been stopped. -
STOPPING
The module is about to be deactivated. -
UNINSTALLED
The module has been uninstalled. -
UNRESOLVED
The module has been unresolved. -
UPDATED
The module has been updated.
-
-
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
-