Enum 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 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_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.
      • TASKING_REQUEST_EXPIRED

        public static final EventCodeEnumerationType TASKING_REQUEST_EXPIRED
        A pending tasking request has expired.
    • 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()