Package net.opengis.sps.v_2_0
Enum EventCodeEnumerationType
- java.lang.Object
-
- java.lang.Enum<EventCodeEnumerationType>
-
- net.opengis.sps.v_2_0.EventCodeEnumerationType
-
- All Implemented Interfaces:
Serializable,Comparable<EventCodeEnumerationType>
public enum EventCodeEnumerationType extends 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 Summary
Enum Constants Enum Constant Description DATA_PUBLISHEDNew data was published for a task that is 'InExecution'.RESERVATION_EXPIREDA reserved task has expired (the expiration time set by the service is before now - "now" being the time measured by the service).TASK_CANCELLEDA scheduled task has been cancelled.TASK_COMPLETEDA task that was 'InExecution' was completed as planned. Implies that all data gathered for the task has been published.TASK_CONFIRMEDA reserved task was confirmed.TASK_FAILEDA scheduled task has failed.TASK_RESERVEDA task was reserved.TASK_SUBMITTEDA task was submitted.TASK_UPDATEDA task was updated.TASKING_REQUEST_EXPIREDA pending tasking request has expired.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventCodeEnumerationTypefromValue(String v)Stringvalue()static EventCodeEnumerationTypevalueOf(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.
-
-
-
Enum Constant Detail
-
DATA_PUBLISHED
public static final EventCodeEnumerationType DATA_PUBLISHED
New data was published for a task that is 'InExecution'.
-
RESERVATION_EXPIRED
public static final EventCodeEnumerationType 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
public static final EventCodeEnumerationType TASK_CANCELLED
A scheduled task has been cancelled.
-
TASK_COMPLETED
public static final EventCodeEnumerationType TASK_COMPLETED
A task that was 'InExecution' was completed as planned. Implies that all data gathered for the task has been published.
-
TASK_CONFIRMED
public static final EventCodeEnumerationType TASK_CONFIRMED
A reserved task was confirmed.
-
TASK_FAILED
public static final EventCodeEnumerationType TASK_FAILED
A scheduled task has failed.
-
TASKING_REQUEST_EXPIRED
public static final EventCodeEnumerationType TASKING_REQUEST_EXPIRED
A pending tasking request has expired.
-
TASK_RESERVED
public static final EventCodeEnumerationType TASK_RESERVED
A task was reserved.
-
TASK_SUBMITTED
public static final EventCodeEnumerationType TASK_SUBMITTED
A task was submitted.
-
TASK_UPDATED
public static final EventCodeEnumerationType TASK_UPDATED
A task was updated.
-
-
Method Detail
-
values
public static EventCodeEnumerationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EventCodeEnumerationType c : EventCodeEnumerationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventCodeEnumerationType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static EventCodeEnumerationType fromValue(String v)
-
-