|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Outcome.State>
com.ecebs.rtd.enabler.types.Outcome.State
public static enum Outcome.State
Represents the state of an operation
Enum Constant Summary | |
---|---|
DOWNLOAD_STARTED
The download to the CM was underway |
|
LAST_MESSAGE_PROCESSED
The last message for the download has been processed |
|
LAST_MESSAGE_RECEIVED
The last message for the download has been received |
|
REQUEST_ACCEPTED
XML sent to RTDS and the XML received back indicated that the request was accepted |
|
REQUESTED
XML was sent to RTDS, but no response has been received, or the response contained an error. |
|
START
Nothing has yet been sent to the RTD Server |
Method Summary | |
---|---|
static Outcome.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Outcome.State[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 Outcome.State START
public static final Outcome.State REQUESTED
public static final Outcome.State REQUEST_ACCEPTED
public static final Outcome.State DOWNLOAD_STARTED
public static final Outcome.State LAST_MESSAGE_RECEIVED
public static final Outcome.State LAST_MESSAGE_PROCESSED
Method Detail |
---|
public static Outcome.State[] values()
for (Outcome.State c : Outcome.State.values()) System.out.println(c);
public static Outcome.State 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 |