|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<InstalledPackageHistoryStatus> org.rhq.core.domain.content.InstalledPackageHistoryStatus
public enum InstalledPackageHistoryStatus
Indicates if an InstalledPackage
is in use on the resource or is a historical entry.
Enum Constant Summary | |
---|---|
BEING_DELETED
The package is in the process of being deployed out to a resource. |
|
BEING_INSTALLED
The package is in the process of being deployed out to a resource. |
|
BEING_RETRIEVED
A request to retrieve the bits for a package is in progress. |
|
DELETED
Indicates the package was explicitly deleted by the user. |
|
DISCOVERED
Indicates a package was discovered by the agent-side discovery. |
|
FAILED
The package request encountered an error. |
|
INSTALLED
Indicates the installed package instance is the currently installed version. |
|
MISSING
Indicates the package has been deleted on the resource directly and did not go through the server to do so. |
|
RETRIEVED
A request to retrieve the bits for a package was successful. |
|
TIMED_OUT
Used to provide an ending when content requests time out. |
Method Summary | |
---|---|
String |
getDescription()
|
String |
getDisplayName()
|
static InstalledPackageHistoryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InstalledPackageHistoryStatus[] |
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 |
---|
public static final InstalledPackageHistoryStatus DISCOVERED
public static final InstalledPackageHistoryStatus MISSING
public static final InstalledPackageHistoryStatus FAILED
public static final InstalledPackageHistoryStatus TIMED_OUT
public static final InstalledPackageHistoryStatus INSTALLED
public static final InstalledPackageHistoryStatus BEING_INSTALLED
public static final InstalledPackageHistoryStatus DELETED
public static final InstalledPackageHistoryStatus BEING_DELETED
public static final InstalledPackageHistoryStatus RETRIEVED
public static final InstalledPackageHistoryStatus BEING_RETRIEVED
Method Detail |
---|
public static InstalledPackageHistoryStatus[] values()
for (InstalledPackageHistoryStatus c : InstalledPackageHistoryStatus.values()) System.out.println(c);
public static InstalledPackageHistoryStatus 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 getDisplayName()
public String getDescription()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |