Package org.n52.shetland.ogc.ows
Enum OWSConstants.Operations
- java.lang.Object
-
- java.lang.Enum<OWSConstants.Operations>
-
- org.n52.shetland.ogc.ows.OWSConstants.Operations
-
- All Implemented Interfaces:
Serializable,Comparable<OWSConstants.Operations>
- Enclosing interface:
- OWSConstants
public static enum OWSConstants.Operations extends Enum<OWSConstants.Operations>
the names of the operations supported by all versions of the service specification
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GetCapabilities
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OWSConstants.OperationsvalueOf(String name)Returns the enum constant of this type with the specified name.static OWSConstants.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 OWSConstants.Operations GetCapabilities
-
-
Method Detail
-
values
public static OWSConstants.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 (OWSConstants.Operations c : OWSConstants.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 OWSConstants.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
-
-