org.apache.felix.dm.annotation.plugin.bnd
Enum EntryType
java.lang.Object
java.lang.Enum<EntryType>
org.apache.felix.dm.annotation.plugin.bnd.EntryType
- All Implemented Interfaces:
- Serializable, Comparable
public enum EntryType
- extends Enum<EntryType>
The type of each entry (lines) stored in a component descriptor.
Method Summary |
static EntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Component
public static final EntryType Component
AspectService
public static final EntryType AspectService
AdapterService
public static final EntryType AdapterService
BundleAdapterService
public static final EntryType BundleAdapterService
ResourceAdapterService
public static final EntryType ResourceAdapterService
FactoryConfigurationAdapterService
public static final EntryType FactoryConfigurationAdapterService
ServiceDependency
public static final EntryType ServiceDependency
ConfigurationDependency
public static final EntryType ConfigurationDependency
BundleDependency
public static final EntryType BundleDependency
ResourceDependency
public static final EntryType ResourceDependency
values
public static EntryType[] 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 (EntryType c : EntryType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EntryType 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 © 2011 Apache Software Foundation. All Rights Reserved.