org.geotools.data.wfs.protocol.wfs
Enum WFSOperationType

Object
  extended by Enum<WFSOperationType>
      extended by WFSOperationType
All Implemented Interfaces:
Serializable, Comparable<WFSOperationType>

public enum WFSOperationType
extends Enum<WFSOperationType>

Enumeration for the possible operations a WFS may implement.

Since:
2.5.x
Author:
Gabriel Roldan
Module:
modules/unsupported/wfs (gt-wfs.jar)

Enum Constant Summary
DESCRIBE_FEATURETYPE
           
GET_CAPABILITIES
           
GET_FEATURE
           
GET_FEATURE_WITH_LOCK
           
GET_GML_OBJECT
           
LOCK_FEATURE
           
TRANSACTION
           
 
Method Summary
 String getName()
           
static WFSOperationType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WFSOperationType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

GET_CAPABILITIES

public static final WFSOperationType GET_CAPABILITIES

DESCRIBE_FEATURETYPE

public static final WFSOperationType DESCRIBE_FEATURETYPE

GET_FEATURE

public static final WFSOperationType GET_FEATURE

GET_GML_OBJECT

public static final WFSOperationType GET_GML_OBJECT

LOCK_FEATURE

public static final WFSOperationType LOCK_FEATURE

GET_FEATURE_WITH_LOCK

public static final WFSOperationType GET_FEATURE_WITH_LOCK

TRANSACTION

public static final WFSOperationType TRANSACTION
Method Detail

values

public static final WFSOperationType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(WFSOperationType c : WFSOperationType.values())
        System.out.println(c);

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

valueOf

public static WFSOperationType 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

getName

public String getName()


Copyright © 1996-2010 Geotools. All Rights Reserved.