Package org.n52.shetland.ogc.sos
Enum Sos2Constants.UpdateSensorDescriptionParams
- java.lang.Object
-
- java.lang.Enum<Sos2Constants.UpdateSensorDescriptionParams>
-
- org.n52.shetland.ogc.sos.Sos2Constants.UpdateSensorDescriptionParams
-
- All Implemented Interfaces:
Serializable,Comparable<Sos2Constants.UpdateSensorDescriptionParams>
- Enclosing interface:
- Sos2Constants
public static enum Sos2Constants.UpdateSensorDescriptionParams extends Enum<Sos2Constants.UpdateSensorDescriptionParams>
enum with parameter names for registerSensor request
-
-
Enum Constant Summary
Enum Constants Enum Constant Description descriptionprocedureprocedureDescriptionFormatservicevalidTimeversion
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Sos2Constants.UpdateSensorDescriptionParamsvalueOf(String name)Returns the enum constant of this type with the specified name.static Sos2Constants.UpdateSensorDescriptionParams[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
service
public static final Sos2Constants.UpdateSensorDescriptionParams service
-
version
public static final Sos2Constants.UpdateSensorDescriptionParams version
-
procedure
public static final Sos2Constants.UpdateSensorDescriptionParams procedure
-
procedureDescriptionFormat
public static final Sos2Constants.UpdateSensorDescriptionParams procedureDescriptionFormat
-
description
public static final Sos2Constants.UpdateSensorDescriptionParams description
-
validTime
public static final Sos2Constants.UpdateSensorDescriptionParams validTime
-
-
Method Detail
-
values
public static Sos2Constants.UpdateSensorDescriptionParams[] 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.UpdateSensorDescriptionParams c : Sos2Constants.UpdateSensorDescriptionParams.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.UpdateSensorDescriptionParams 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
-
-