net.opengis.swes.v_2_0
Enum EventCodeEnumerationType

java.lang.Object
  extended by java.lang.Enum<EventCodeEnumerationType>
      extended by net.opengis.swes.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="CapabilitiesChanged"/>
     <enumeration value="OfferingAdded"/>
     <enumeration value="OfferingDeleted"/>
     <enumeration value="SensorDescriptionUpdated"/>
     <enumeration value="SensorInserted"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CAPABILITIES_CHANGED
          A property inside the service’s Capabilities document was added, removed or changed its value.
OFFERING_ADDED
          A new offering - as defined by the SWE Service Model - was added to the service.
OFFERING_DELETED
          An offering- as defined by the SWE Service Model - was deleted from the service.
SENSOR_DESCRIPTION_UPDATED
          The description of a sensor was updated, meaning that information contained in the current and / or previous versions of the sensor's description was added, removed or modified.
SENSOR_INSERTED
          A sensor was inserted at the service, resulting in a new offering - as defined by the SWE Service Model - having been added to the service.
 
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

CAPABILITIES_CHANGED

public static final EventCodeEnumerationType CAPABILITIES_CHANGED
A property inside the service’s Capabilities document was added, removed or changed its value. If multiple changes happen at the same time (or in a time interval sufficiently small for a service to recognize them as belonging together) then they constitute one capabilities changed event.


OFFERING_ADDED

public static final EventCodeEnumerationType OFFERING_ADDED
A new offering - as defined by the SWE Service Model - was added to the service.


OFFERING_DELETED

public static final EventCodeEnumerationType OFFERING_DELETED
An offering- as defined by the SWE Service Model - was deleted from the service.


SENSOR_DESCRIPTION_UPDATED

public static final EventCodeEnumerationType SENSOR_DESCRIPTION_UPDATED
The description of a sensor was updated, meaning that information contained in the current and / or previous versions of the sensor's description was added, removed or modified.


SENSOR_INSERTED

public static final EventCodeEnumerationType SENSOR_INSERTED
A sensor was inserted at the service, resulting in a new offering - as defined by the SWE Service Model - having been added to the service.

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.