org.deegree.protocol.wps
Enum WPSConstants.WPSRequestType

java.lang.Object
  extended by java.lang.Enum<WPSConstants.WPSRequestType>
      extended by org.deegree.protocol.wps.WPSConstants.WPSRequestType
All Implemented Interfaces:
Serializable, Comparable<WPSConstants.WPSRequestType>
Enclosing class:
WPSConstants

public static enum WPSConstants.WPSRequestType
extends Enum<WPSConstants.WPSRequestType>

Enum type for discriminating between the different types of WebProcessingService (WPS) requests.

Version:
$Revision: $, $Date: $
Author:
Markus Schneider, last edited by: $Author: schneider $

Enum Constant Summary
DescribeProcess
          Retrieve the process description for one more processes.
Execute
          Execute a process.
GetCapabilities
          Retrieve the capabilities of the service.
GetOutput
          deegree WPS specific request for retrieving stored complex outputs.
GetResponseDocument
          deegree WPS specific request for retrieving response documents.
 
Method Summary
static WPSConstants.WPSRequestType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WPSConstants.WPSRequestType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DescribeProcess

public static final WPSConstants.WPSRequestType DescribeProcess
Retrieve the process description for one more processes.


GetCapabilities

public static final WPSConstants.WPSRequestType GetCapabilities
Retrieve the capabilities of the service.


Execute

public static final WPSConstants.WPSRequestType Execute
Execute a process.


GetOutput

public static final WPSConstants.WPSRequestType GetOutput
deegree WPS specific request for retrieving stored complex outputs.


GetResponseDocument

public static final WPSConstants.WPSRequestType GetResponseDocument
deegree WPS specific request for retrieving response documents.

Method Detail

values

public static WPSConstants.WPSRequestType[] 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.WPSRequestType c : WPSConstants.WPSRequestType.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.WPSRequestType 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 name
NullPointerException - if the argument is null


Copyright © 2011. All Rights Reserved.