public enum BundleEventType extends Enum<BundleEventType>
BundleEvent
Enum Constant and Description |
---|
INSTALLED |
LAZY_ACTIVATION |
RESOLVED |
STARTED |
STARTING |
STOPPED |
STOPPING |
UNINSTALLED |
UNKNOWN_EVENT |
UNRESOLVED |
UPDATED |
Modifier and Type | Method and Description |
---|---|
static BundleEventType |
valueOf(int i) |
static BundleEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BundleEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BundleEventType INSTALLED
public static final BundleEventType STARTED
public static final BundleEventType STOPPED
public static final BundleEventType UPDATED
public static final BundleEventType UNINSTALLED
public static final BundleEventType RESOLVED
public static final BundleEventType UNRESOLVED
public static final BundleEventType STARTING
public static final BundleEventType STOPPING
public static final BundleEventType LAZY_ACTIVATION
public static final BundleEventType UNKNOWN_EVENT
public static BundleEventType[] values()
for (BundleEventType c : BundleEventType.values()) System.out.println(c);
public static BundleEventType 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 BundleEventType valueOf(int i)
Copyright © 2009–2023 Oracle Corporation. All rights reserved.