|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ServiceScope>
org.osgi.service.component.annotations.ServiceScope
public enum ServiceScope
Service scope for the Component annotation.
| Enum Constant Summary | |
|---|---|
BUNDLE
When the component is registered as a service, it will be registered as a bundle scope service and an instance of the component will be created for each bundle using the service. |
|
DEFAULT
Default element value for annotation. |
|
PROTOTYPE
When the component is registered as a service, it will be registered as a prototype scope service. |
|
SINGLETON
When the component is registered as a service, it will be registered as a bundle scope service but only a single instance of the component will be used for all bundles using the service. |
|
| Method Summary | |
|---|---|
String |
toString()
|
static ServiceScope |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ServiceScope[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ServiceScope SINGLETON
public static final ServiceScope BUNDLE
public static final ServiceScope PROTOTYPE
public static final ServiceScope DEFAULT
| Method Detail |
|---|
public static ServiceScope[] values()
for (ServiceScope c : ServiceScope.values()) System.out.println(c);
public static ServiceScope valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ServiceScope>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||