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 and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final EventCodeEnumerationType CAPABILITIES_CHANGED
public static final EventCodeEnumerationType OFFERING_ADDED
public static final EventCodeEnumerationType OFFERING_DELETED
public static final EventCodeEnumerationType SENSOR_DESCRIPTION_UPDATED
public static final EventCodeEnumerationType SENSOR_INSERTED
public static EventCodeEnumerationType[] values()
for (EventCodeEnumerationType c : EventCodeEnumerationType.values()) System.out.println(c);
public static EventCodeEnumerationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static EventCodeEnumerationType fromValue(String v)
Copyright © 2008–2023. All rights reserved.