Package org.n52.shetland.aqd
Enum AqdConstants.Operations
- java.lang.Object
-
- java.lang.Enum<AqdConstants.Operations>
-
- org.n52.shetland.aqd.AqdConstants.Operations
-
- All Implemented Interfaces:
Serializable,Comparable<AqdConstants.Operations>
- Enclosing interface:
- AqdConstants
public static enum AqdConstants.Operations extends Enum<AqdConstants.Operations>
the names of the operations supported by all versions of the SOS specification
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DescribeSensorGetCapabilitiesGetObservation
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AqdConstants.OperationsvalueOf(String name)Returns the enum constant of this type with the specified name.static AqdConstants.Operations[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GetCapabilities
public static final AqdConstants.Operations GetCapabilities
-
GetObservation
public static final AqdConstants.Operations GetObservation
-
DescribeSensor
public static final AqdConstants.Operations DescribeSensor
-
-
Method Detail
-
values
public static AqdConstants.Operations[] 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 (AqdConstants.Operations c : AqdConstants.Operations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AqdConstants.Operations 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
-
-