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