Package org.n52.shetland.ogc.sos
Enum Sos2Constants.InsertObservationParams
- java.lang.Object
-
- java.lang.Enum<Sos2Constants.InsertObservationParams>
-
- org.n52.shetland.ogc.sos.Sos2Constants.InsertObservationParams
-
- All Implemented Interfaces:
Serializable,Comparable<Sos2Constants.InsertObservationParams>
- Enclosing interface:
- Sos2Constants
public static enum Sos2Constants.InsertObservationParams extends Enum<Sos2Constants.InsertObservationParams>
enum with parameter names for OGC SOS 2.0 insertObservation request not supported by all versions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description featureOfInterestobservationobservationTypeobservedPropertyofferingparameterprocedure
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Sos2Constants.InsertObservationParamsvalueOf(String name)Returns the enum constant of this type with the specified name.static Sos2Constants.InsertObservationParams[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
offering
public static final Sos2Constants.InsertObservationParams offering
-
observation
public static final Sos2Constants.InsertObservationParams observation
-
observationType
public static final Sos2Constants.InsertObservationParams observationType
-
observedProperty
public static final Sos2Constants.InsertObservationParams observedProperty
-
procedure
public static final Sos2Constants.InsertObservationParams procedure
-
featureOfInterest
public static final Sos2Constants.InsertObservationParams featureOfInterest
-
parameter
public static final Sos2Constants.InsertObservationParams parameter
-
-
Method Detail
-
values
public static Sos2Constants.InsertObservationParams[] 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.InsertObservationParams c : Sos2Constants.InsertObservationParams.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.InsertObservationParams 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
-
-