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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionThe module has been installedThe module has been activated with the lazy activation policy and is waiting atriggerclass 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 SummaryModifier 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- 
INSTALLEDThe module has been installed
- 
LAZY_ACTIVATIONThe module has been activated with the lazy activation policy and is waiting atriggerclass load.
- 
RESOLVEDThe module has been resolved.
- 
STARTEDThe module has beens started.
- 
STARTINGThe module is about to be activated.
- 
STOPPEDThe module has been stopped.
- 
STOPPINGThe module is about to be deactivated.
- 
UNINSTALLEDThe module has been uninstalled.
- 
UNRESOLVEDThe module has been unresolved.
- 
UPDATEDThe module has been updated.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-