Package org.n52.shetland.ogc.sos
Enum SosConstants.GetObservationParams
- java.lang.Object
-
- java.lang.Enum<SosConstants.GetObservationParams>
-
- org.n52.shetland.ogc.sos.SosConstants.GetObservationParams
-
- All Implemented Interfaces:
Serializable,Comparable<SosConstants.GetObservationParams>
- Enclosing interface:
- SosConstants
public static enum SosConstants.GetObservationParams extends Enum<SosConstants.GetObservationParams>
enum with parameter names for getObservation request supported by all versions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BBOXfeatureOfInterestmaxRecordsobservedPropertyofferingprocedureresponseFormatresponseModeresultresultModelresultTypeSortBysrsNamestartPosition
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SosConstants.GetObservationParamsvalueOf(String name)Returns the enum constant of this type with the specified name.static SosConstants.GetObservationParams[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
srsName
public static final SosConstants.GetObservationParams srsName
-
resultType
public static final SosConstants.GetObservationParams resultType
-
startPosition
public static final SosConstants.GetObservationParams startPosition
-
maxRecords
public static final SosConstants.GetObservationParams maxRecords
-
offering
public static final SosConstants.GetObservationParams offering
-
procedure
public static final SosConstants.GetObservationParams procedure
-
observedProperty
public static final SosConstants.GetObservationParams observedProperty
-
featureOfInterest
public static final SosConstants.GetObservationParams featureOfInterest
-
result
public static final SosConstants.GetObservationParams result
-
responseFormat
public static final SosConstants.GetObservationParams responseFormat
-
resultModel
public static final SosConstants.GetObservationParams resultModel
-
responseMode
public static final SosConstants.GetObservationParams responseMode
-
SortBy
public static final SosConstants.GetObservationParams SortBy
-
BBOX
public static final SosConstants.GetObservationParams BBOX
-
-
Method Detail
-
values
public static SosConstants.GetObservationParams[] 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.GetObservationParams c : SosConstants.GetObservationParams.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.GetObservationParams 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
-
-