|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ResultState> org.rhq.core.domain.alert.notification.ResultState
public enum ResultState
State of a SenderResult
SenderResult
Enum Constant Summary | |
---|---|
DEFERRED
Deferred: sender action was invoked, but response can not be immediately determined |
|
FAILURE
Failure: sending of the notification was a known failure |
|
PARTIAL
Partial: sending of the notification has some failures |
|
SUCCESS
Success: sending of the notification was a known success |
|
UNKNOWN
Unknown: alert sender returned a null result |
Method Summary | |
---|---|
static ResultState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ResultState[] |
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 ResultState SUCCESS
public static final ResultState PARTIAL
public static final ResultState FAILURE
public static final ResultState DEFERRED
public static final ResultState UNKNOWN
Method Detail |
---|
public static ResultState[] values()
for (ResultState c : ResultState.values()) System.out.println(c);
public static ResultState 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |