org.apache.felix.dm.runtime
Enum Params
java.lang.Object
java.lang.Enum<Params>
org.apache.felix.dm.runtime.Params
- All Implemented Interfaces:
- Serializable, Comparable
public enum Params
- extends Enum<Params>
List of descriptor parameters.
Method Summary |
static Params |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Params[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
type
public static final Params type
init
public static final Params init
start
public static final Params start
stop
public static final Params stop
destroy
public static final Params destroy
impl
public static final Params impl
provides
public static final Params provides
properties
public static final Params properties
composition
public static final Params composition
service
public static final Params service
filter
public static final Params filter
defaultImpl
public static final Params defaultImpl
required
public static final Params required
added
public static final Params added
changed
public static final Params changed
removed
public static final Params removed
autoConfig
public static final Params autoConfig
pid
public static final Params pid
propagate
public static final Params propagate
updated
public static final Params updated
timeout
public static final Params timeout
adapteeService
public static final Params adapteeService
adapteeFilter
public static final Params adapteeFilter
stateMask
public static final Params stateMask
ranking
public static final Params ranking
factoryPid
public static final Params factoryPid
factorySet
public static final Params factorySet
factoryConfigure
public static final Params factoryConfigure
factoryMethod
public static final Params factoryMethod
name
public static final Params name
field
public static final Params field
starter
public static final Params starter
stopper
public static final Params stopper
values
public static Params[] 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 (Params c : Params.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Params valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2013 The Apache Software Foundation. All Rights Reserved.