Package org.osgi.service.cdi
Enum ReferencePolicyOption
- java.lang.Object
-
- java.lang.Enum<ReferencePolicyOption>
-
- org.osgi.service.cdi.ReferencePolicyOption
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ReferencePolicyOption>
public enum ReferencePolicyOption extends java.lang.Enum<ReferencePolicyOption>
Defines the possible values of the policy of a satisfied reference towards new matching services appearing.- Author:
- $Id: 35aa1a9b3f96292d6d3072c0a154a5ebea8d4858 $
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GREEDY
Consume the matching service applying it'sReferencePolicy
RELUCTANT
Do not consume the matching service
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReferencePolicyOption
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ReferencePolicyOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GREEDY
public static final ReferencePolicyOption GREEDY
Consume the matching service applying it'sReferencePolicy
-
RELUCTANT
public static final ReferencePolicyOption RELUCTANT
Do not consume the matching service
-
-
Method Detail
-
values
public static ReferencePolicyOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ReferencePolicyOption c : ReferencePolicyOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReferencePolicyOption valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-