|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<DeleteResourceStatus> org.rhq.core.domain.resource.DeleteResourceStatus
public enum DeleteResourceStatus
Status indicators for a delete resource request made to a plugin.
Enum Constant Summary | |
---|---|
FAILURE
Indicates the agent has responded to this request and indicated a failure occurred in either the agent, plugin container, or plugin itself. |
|
IN_PROGRESS
Indicates the request has been submitted to the agent but we have not yet received a response. |
|
SUCCESS
Indicates the result has been returned from the agent and the plugin was able to delete the requested resource. |
|
TIMED_OUT
Indicates the request was successfully sent to the agent, however a response was not received in a timely manner. |
Method Summary | |
---|---|
String |
toString()
|
static DeleteResourceStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DeleteResourceStatus[] |
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 DeleteResourceStatus IN_PROGRESS
public static final DeleteResourceStatus SUCCESS
public static final DeleteResourceStatus FAILURE
public static final DeleteResourceStatus TIMED_OUT
Method Detail |
---|
public static DeleteResourceStatus[] values()
for (DeleteResourceStatus c : DeleteResourceStatus.values()) System.out.println(c);
public static DeleteResourceStatus 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 toString()
toString
in class Enum<DeleteResourceStatus>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |