Package org.geotools.data.wfs.internal
Enum WFSOperationType
- Object
-
- Enum<WFSOperationType>
-
- 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
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DESCRIBE_FEATURETYPE
DESCRIBE_STORED_QUERIES
GET_CAPABILITIES
GET_FEATURE
GET_FEATURE_WITH_LOCK
GET_GML_OBJECT
LIST_STORED_QUERIES
LOCK_FEATURE
TRANSACTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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 are declared.
-
-
-
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
-
LIST_STORED_QUERIES
public static final WFSOperationType LIST_STORED_QUERIES
-
DESCRIBE_STORED_QUERIES
public static final WFSOperationType DESCRIBE_STORED_QUERIES
-
-
Method Detail
-
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(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
-
getName
public String getName()
-
-