Enum Class ServiceScope
- All Implemented Interfaces:
Serializable
,Comparable<ServiceScope>
,Constable
Service scope for the
Component
annotation.- Since:
- 1.3
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionWhen 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.Default element value for annotation.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.When the component is registered as a service, it must be registered as a bundle scope service but only a single instance of the component must be used for all bundles using the service. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
static ServiceScope
Returns the enum constant of this class with the specified name.static ServiceScope[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SINGLETON
When the component is registered as a service, it must be registered as a bundle scope service but only a single instance of the component must be used for all bundles using the service. -
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. -
DEFAULT
Default element value for annotation. This is used to distinguish the default value for an element and should not otherwise be used.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<ServiceScope>
-