public static enum Component.ServiceScope extends java.lang.Enum<Component.ServiceScope>
Enum Constant and Description |
---|
BUNDLE
When the component is registered as a service, it must be registered as a
bundle scope service and an instance of the component must be created for
each bundle using the service.
|
PROTOTYPE
When the component is registered as a service, it must be registered as a
prototype scope service and an instance of the component must be created
for each distinct request for the service.
|
SINGLETON
When the component is registered as a service, it must be registered as a
singleton: only a single instance of the component must be
used for all service consumers.
|
Modifier and Type | Method and Description |
---|---|
static Component.ServiceScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Component.ServiceScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Component.ServiceScope SINGLETON
public static final Component.ServiceScope BUNDLE
public static final Component.ServiceScope PROTOTYPE
public static Component.ServiceScope[] values()
for (Component.ServiceScope c : Component.ServiceScope.values()) System.out.println(c);
public static Component.ServiceScope valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null