Package org.n52.shetland.ogc.sos
Enum Sos2Constants.Operations
- java.lang.Object
-
- java.lang.Enum<Sos2Constants.Operations>
-
- org.n52.shetland.ogc.sos.Sos2Constants.Operations
-
- All Implemented Interfaces:
Serializable,Comparable<Sos2Constants.Operations>
- Enclosing interface:
- Sos2Constants
public static enum Sos2Constants.Operations extends Enum<Sos2Constants.Operations>
the names of the OGC SOS 2.0 operations that are not supported by all versions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DeleteSensorGetResultTemplateInsertResultInsertResultTemplateInsertSensorUpdateSensorDescription
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Sos2Constants.OperationsvalueOf(String name)Returns the enum constant of this type with the specified name.static Sos2Constants.Operations[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
InsertSensor
public static final Sos2Constants.Operations InsertSensor
-
DeleteSensor
public static final Sos2Constants.Operations DeleteSensor
-
InsertResult
public static final Sos2Constants.Operations InsertResult
-
InsertResultTemplate
public static final Sos2Constants.Operations InsertResultTemplate
-
GetResultTemplate
public static final Sos2Constants.Operations GetResultTemplate
-
UpdateSensorDescription
public static final Sos2Constants.Operations UpdateSensorDescription
-
-
Method Detail
-
values
public static Sos2Constants.Operations[] 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 (Sos2Constants.Operations c : Sos2Constants.Operations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Sos2Constants.Operations 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
-
-