|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ConfigurationPolicy>
org.apache.felix.scr.annotations.ConfigurationPolicy
public enum ConfigurationPolicy
Options for Component.policy()
property.
Enum Constant Summary | |
---|---|
IGNORE
The configuration admin is not consulted for a configuration for this component. |
|
OPTIONAL
If a configuration is available it will be used, if not the component will be activated anyway (this is the default). |
|
REQUIRE
In order to activate this component a configuration is required. |
Method Summary | |
---|---|
String |
getPolicyString()
|
static ConfigurationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ConfigurationPolicy[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ConfigurationPolicy OPTIONAL
public static final ConfigurationPolicy IGNORE
public static final ConfigurationPolicy REQUIRE
Method Detail |
---|
public static ConfigurationPolicy[] values()
for (ConfigurationPolicy c : ConfigurationPolicy.values()) System.out.println(c);
public static ConfigurationPolicy 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 getPolicyString()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |