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