Package org.n52.shetland.ogc.sos
Enum Sos2Constants.GetResultParams
- java.lang.Object
-
- java.lang.Enum<Sos2Constants.GetResultParams>
-
- org.n52.shetland.ogc.sos.Sos2Constants.GetResultParams
-
- All Implemented Interfaces:
Serializable,Comparable<Sos2Constants.GetResultParams>
- Enclosing interface:
- Sos2Constants
public static enum Sos2Constants.GetResultParams extends Enum<Sos2Constants.GetResultParams>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description featureOfInterestobservedPropertyofferingspatialFiltertemporalFilter
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Sos2Constants.GetResultParamsvalueOf(String name)Returns the enum constant of this type with the specified name.static Sos2Constants.GetResultParams[]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.GetResultParams offering
-
observedProperty
public static final Sos2Constants.GetResultParams observedProperty
-
featureOfInterest
public static final Sos2Constants.GetResultParams featureOfInterest
-
temporalFilter
public static final Sos2Constants.GetResultParams temporalFilter
-
spatialFilter
public static final Sos2Constants.GetResultParams spatialFilter
-
-
Method Detail
-
values
public static Sos2Constants.GetResultParams[] 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.GetResultParams c : Sos2Constants.GetResultParams.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.GetResultParams 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
-
-