Package org.n52.shetland.ogc.sos
Enum SosConstants.DescribeSensorParams
- java.lang.Object
-
- java.lang.Enum<SosConstants.DescribeSensorParams>
-
- org.n52.shetland.ogc.sos.SosConstants.DescribeSensorParams
-
- All Implemented Interfaces:
Serializable,Comparable<SosConstants.DescribeSensorParams>
- Enclosing interface:
- SosConstants
public static enum SosConstants.DescribeSensorParams extends Enum<SosConstants.DescribeSensorParams>
enum with parameter names for getObservation request supported by all versions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description procedure
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SosConstants.DescribeSensorParamsvalueOf(String name)Returns the enum constant of this type with the specified name.static SosConstants.DescribeSensorParams[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
procedure
public static final SosConstants.DescribeSensorParams procedure
-
-
Method Detail
-
values
public static SosConstants.DescribeSensorParams[] 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 (SosConstants.DescribeSensorParams c : SosConstants.DescribeSensorParams.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SosConstants.DescribeSensorParams 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
-
-