public enum PackageType extends java.lang.Enum<PackageType>
Enum Constant and Description |
---|
APPLICATION
An application package consists purely of application content.
|
CONTAINER
A container package only contains sub packages and OSGi configuration and bundles.
|
CONTENT
A content package consists only of content and user defined configuration.
|
MIXED
Catch all type for a combination of the above.
|
Modifier and Type | Method and Description |
---|---|
static PackageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PackageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackageType APPLICATION
public static final PackageType CONTENT
public static final PackageType CONTAINER
public static final PackageType MIXED
public static PackageType[] values()
for (PackageType c : PackageType.values()) System.out.println(c);
public static PackageType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"