org.apache.felix.dm.annotation.plugin.bnd
Enum EntryParam

java.lang.Object
  extended by java.lang.Enum<EntryParam>
      extended by org.apache.felix.dm.annotation.plugin.bnd.EntryParam
All Implemented Interfaces:
Serializable, Comparable<EntryParam>

public enum EntryParam
extends Enum<EntryParam>

The type of parameters which can be found in a component descriptor.


Enum Constant Summary
adapteeFilter
           
adapteeService
           
added
           
autoConfig
           
changed
           
composition
           
defaultImpl
           
destroy
           
factoryConfigure
           
factoryMethod
           
factoryPid
           
factorySet
           
field
           
filter
           
impl
           
init
           
name
           
pid
           
propagate
           
properties
           
provides
           
ranking
           
removed
           
required
           
service
           
start
           
starter
           
stateMask
           
stop
           
stopper
           
timeout
           
updated
           
 
Method Summary
static EntryParam valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EntryParam[] 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

init

public static final EntryParam init

start

public static final EntryParam start

stop

public static final EntryParam stop

destroy

public static final EntryParam destroy

impl

public static final EntryParam impl

provides

public static final EntryParam provides

properties

public static final EntryParam properties

composition

public static final EntryParam composition

service

public static final EntryParam service

filter

public static final EntryParam filter

defaultImpl

public static final EntryParam defaultImpl

required

public static final EntryParam required

added

public static final EntryParam added

changed

public static final EntryParam changed

removed

public static final EntryParam removed

autoConfig

public static final EntryParam autoConfig

pid

public static final EntryParam pid

factoryPid

public static final EntryParam factoryPid

propagate

public static final EntryParam propagate

updated

public static final EntryParam updated

timeout

public static final EntryParam timeout

adapteeService

public static final EntryParam adapteeService

adapteeFilter

public static final EntryParam adapteeFilter

stateMask

public static final EntryParam stateMask

ranking

public static final EntryParam ranking

factorySet

public static final EntryParam factorySet

factoryConfigure

public static final EntryParam factoryConfigure

factoryMethod

public static final EntryParam factoryMethod

field

public static final EntryParam field

name

public static final EntryParam name

starter

public static final EntryParam starter

stopper

public static final EntryParam stopper
Method Detail

values

public static EntryParam[] 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 (EntryParam c : EntryParam.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static EntryParam 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 © 2006-2011 Apache Software Foundation. All Rights Reserved.