org.geotools.data.wfs.protocol.wfs
Enum WFSOperationType
java.lang.Object
java.lang.Enum<WFSOperationType>
org.geotools.data.wfs.protocol.wfs.WFSOperationType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<WFSOperationType>
public enum WFSOperationType
- extends java.lang.Enum<WFSOperationType>
Enumeration for the possible operations a WFS may implement.
- Since:
- 2.5.x
- Version:
- $Id: WFSOperationType.java 31731 2008-10-29 13:51:20Z groldan $
- Author:
- Gabriel Roldan
Method Summary |
java.lang.String |
getName()
|
static WFSOperationType |
valueOf(java.lang.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 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 |
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
values
public static WFSOperationType[] 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 (WFSOperationType c : WFSOperationType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static WFSOperationType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getName
public java.lang.String getName()
Copyright © 1996-2010 Geotools. All Rights Reserved.