net.opengis.sps.v_2_0
Enum EventCodeEnumerationType

java.lang.Object
  extended by java.lang.Enum<EventCodeEnumerationType>
      extended by 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
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.
 
Method Summary
static EventCodeEnumerationType fromValue(String v)
           
 String value()
           
static EventCodeEnumerationType valueOf(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.
 
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

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 name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static EventCodeEnumerationType fromValue(String v)


Copyright © 2008-2015. All Rights Reserved.