public enum ConfigurationPolicy extends Enum<ConfigurationPolicy>
Component.policy()
property.Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ConfigurationPolicy OPTIONAL
public static final ConfigurationPolicy IGNORE
public static final ConfigurationPolicy REQUIRE
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 nameNullPointerException
- if the argument is nullCopyright © 2006–2015 The Apache Software Foundation. All rights reserved.