|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ContentRequestStatus> org.rhq.core.domain.content.ContentRequestStatus
public enum ContentRequestStatus
Indicates the current state of a request
.
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 execute the actions described by the request. |
|
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 ContentRequestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ContentRequestStatus[] |
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 ContentRequestStatus IN_PROGRESS
public static final ContentRequestStatus SUCCESS
public static final ContentRequestStatus FAILURE
public static final ContentRequestStatus TIMED_OUT
Method Detail |
---|
public static ContentRequestStatus[] values()
for (ContentRequestStatus c : ContentRequestStatus.values()) System.out.println(c);
public static ContentRequestStatus 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<ContentRequestStatus>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |