org.deegree.protocol.wfs
Enum WFSRequestType

java.lang.Object
  extended by java.lang.Enum<WFSRequestType>
      extended by org.deegree.protocol.wfs.WFSRequestType
All Implemented Interfaces:
Serializable, Comparable<WFSRequestType>

public enum WFSRequestType
extends Enum<WFSRequestType>

Enum type for discriminating between the different requests from the OpenGIS Web Feature Service (WFS) Implementation Specification.

Version:
$Revision: 31512 $, $Date: 2011-08-16 18:17:14 +0200 (Tue, 16 Aug 2011) $
Author:
Markus Schneider, last edited by: $Author: mschneider $

Enum Constant Summary
CreateStoredQuery
          Define persistent parametrized query expressions (2.0.0)
DescribeFeatureType
          Retrieve the data model (schema) for one or more feature types (1.0.0, 1.1.0, 2.0.0)
DescribeStoredQueries
          Retrieve a description of a stored query expresssion (2.0.0)
DropStoredQuery
          Drop a stored query from the service (2.0.0)
GetCapabilities
          Retrieve the capabilities of the service (1.0.0, 1.1.0, 2.0.0)
GetFeature
          Query one or more feature types with optional filter expressions (1.0.0, 1.1.0, 2.0.0)
GetFeatureWithLock
          Query and lock features (1.1.0 and 2.0.0)
GetGmlObject
          Retrieve features and elements by ID (1.1.0)
GetPropertyValue
          Retrieve the values of selected feature properties based on query constraints (2.0.0)
ListStoredQueries
          Retrieve a list of stored queries offered by a service (2.0.0)
LockFeature
          Lock features that match a filter expression.
Transaction
          Insert, update or delete features (1.0.0, 1.1.0, 2.0.0)
 
Method Summary
static WFSRequestType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WFSRequestType[] 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

GetCapabilities

public static final WFSRequestType GetCapabilities
Retrieve the capabilities of the service (1.0.0, 1.1.0, 2.0.0)


DescribeFeatureType

public static final WFSRequestType DescribeFeatureType
Retrieve the data model (schema) for one or more feature types (1.0.0, 1.1.0, 2.0.0)


GetFeature

public static final WFSRequestType GetFeature
Query one or more feature types with optional filter expressions (1.0.0, 1.1.0, 2.0.0)


Transaction

public static final WFSRequestType Transaction
Insert, update or delete features (1.0.0, 1.1.0, 2.0.0)


GetFeatureWithLock

public static final WFSRequestType GetFeatureWithLock
Query and lock features (1.1.0 and 2.0.0)


GetGmlObject

public static final WFSRequestType GetGmlObject
Retrieve features and elements by ID (1.1.0)


LockFeature

public static final WFSRequestType LockFeature
Lock features that match a filter expression.


GetPropertyValue

public static final WFSRequestType GetPropertyValue
Retrieve the values of selected feature properties based on query constraints (2.0.0)


CreateStoredQuery

public static final WFSRequestType CreateStoredQuery
Define persistent parametrized query expressions (2.0.0)


DropStoredQuery

public static final WFSRequestType DropStoredQuery
Drop a stored query from the service (2.0.0)


ListStoredQueries

public static final WFSRequestType ListStoredQueries
Retrieve a list of stored queries offered by a service (2.0.0)


DescribeStoredQueries

public static final WFSRequestType DescribeStoredQueries
Retrieve a description of a stored query expresssion (2.0.0)

Method Detail

values

public static WFSRequestType[] 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 (WFSRequestType c : WFSRequestType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static WFSRequestType 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.