public enum EventCodeEnumerationType extends java.lang.Enum<EventCodeEnumerationType>
Java class for EventCodeEnumerationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EventCodeEnumerationType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DataPublished"/>
<enumeration value="ReservationExpired"/>
<enumeration value="TaskCancelled"/>
<enumeration value="TaskCompleted"/>
<enumeration value="TaskConfirmed"/>
<enumeration value="TaskFailed"/>
<enumeration value="TaskingRequestExpired"/>
<enumeration value="TaskReserved"/>
<enumeration value="TaskSubmitted"/>
<enumeration value="TaskUpdated"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DATA_PUBLISHED
New data was published for a task that is 'InExecution'.
|
RESERVATION_EXPIRED
A reserved task has expired (the expiration time set by the service is before now - "now" being the time measured by the service).
|
TASK_CANCELLED
A scheduled task has been cancelled.
|
TASK_COMPLETED
A task that was 'InExecution' was completed as planned. Implies that all data gathered for the task has been published.
|
TASK_CONFIRMED
A reserved task was confirmed.
|
TASK_FAILED
A scheduled task has failed.
|
TASK_RESERVED
A task was reserved.
|
TASK_SUBMITTED
A task was submitted.
|
TASK_UPDATED
A task was updated.
|
TASKING_REQUEST_EXPIRED
A pending tasking request has expired.
|
| Modifier and Type | Method and Description |
|---|---|
static EventCodeEnumerationType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static EventCodeEnumerationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventCodeEnumerationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventCodeEnumerationType DATA_PUBLISHED
public static final EventCodeEnumerationType RESERVATION_EXPIRED
public static final EventCodeEnumerationType TASK_CANCELLED
public static final EventCodeEnumerationType TASK_COMPLETED
public static final EventCodeEnumerationType TASK_CONFIRMED
public static final EventCodeEnumerationType TASK_FAILED
public static final EventCodeEnumerationType TASKING_REQUEST_EXPIRED
public static final EventCodeEnumerationType TASK_RESERVED
public static final EventCodeEnumerationType TASK_SUBMITTED
public static final EventCodeEnumerationType TASK_UPDATED
public static EventCodeEnumerationType[] values()
for (EventCodeEnumerationType c : EventCodeEnumerationType.values()) System.out.println(c);
public static EventCodeEnumerationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static EventCodeEnumerationType fromValue(java.lang.String v)
Copyright © 2008-2021. All Rights Reserved.