@Beta public enum ApplicationEventType extends Enum<ApplicationEventType>
| Enum Constant and Description |
|---|
INSTALLED |
LAZY_ACTIVATION |
RESOLVED |
STARTED |
STARTING |
STOPPED |
STOPPING |
UNINSTALLED |
UNRESOLVED |
UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static ApplicationEventType |
fromBundleEvent(org.osgi.framework.BundleEvent bundle) |
static ApplicationEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationEventType INSTALLED
public static final ApplicationEventType RESOLVED
public static final ApplicationEventType LAZY_ACTIVATION
public static final ApplicationEventType STARTING
public static final ApplicationEventType STARTED
public static final ApplicationEventType STOPPING
public static final ApplicationEventType STOPPED
public static final ApplicationEventType UPDATED
public static final ApplicationEventType UNRESOLVED
public static final ApplicationEventType UNINSTALLED
public static ApplicationEventType[] values()
for (ApplicationEventType c : ApplicationEventType.values()) System.out.println(c);
public static ApplicationEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static ApplicationEventType fromBundleEvent(org.osgi.framework.BundleEvent bundle)