|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<PackageCategory> org.rhq.core.domain.content.PackageCategory
public enum PackageCategory
Represents the major supported categories for packages.
Enum Constant Summary | |
---|---|
BUNDLE
A bundle file, deployable as part of a bundle deploy. |
|
CONFIGURATION
Represents configuration data for a managed resource |
|
DEPLOYABLE
Represents a deployable to the parent resource that can be pushed as arbitrary content |
|
EXECUTABLE_BINARY
Executables that are able to natively run on a platform |
|
EXECUTABLE_SCRIPT
Executable scripts that may be edited prior to execution. |
|
LOG
A log file |
Method Summary | |
---|---|
String |
getName()
|
String |
toString()
|
static PackageCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PackageCategory[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PackageCategory EXECUTABLE_SCRIPT
public static final PackageCategory EXECUTABLE_BINARY
public static final PackageCategory DEPLOYABLE
public static final PackageCategory CONFIGURATION
public static final PackageCategory LOG
public static final PackageCategory BUNDLE
Method Detail |
---|
public static PackageCategory[] values()
for (PackageCategory c : PackageCategory.values()) System.out.println(c);
public static PackageCategory valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getName()
public String toString()
toString
in class Enum<PackageCategory>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |