Package net.opengis.wfs
Class OperationType
Object
AbstractEnumerator
OperationType
- All Implemented Interfaces:
Serializable
,Enumerator
public final class OperationType
extends AbstractEnumerator
A representation of the literals of the enumeration 'Operation Type',
and utility methods for working with them.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The 'Delete' literal value.static final OperationType
The 'Delete' literal object.static final int
The 'Get Gml Object' literal value.static final OperationType
The 'Get Gml Object' literal object.static final int
The 'Insert' literal value.static final OperationType
The 'Insert' literal object.static final int
The 'Lock' literal value.static final OperationType
The 'Lock' literal object.static final int
The 'Query' literal value.static final OperationType
The 'Query' literal object.static final int
The 'Update' literal value.static final OperationType
The 'Update' literal object.static final List
A public read-only list of all the 'Operation Type' enumerators. -
Method Summary
Modifier and TypeMethodDescriptionstatic OperationType
get
(int value) Returns the 'Operation Type' literal with the specified integer value.static OperationType
Returns the 'Operation Type' literal with the specified literal value.static OperationType
Returns the 'Operation Type' literal with the specified name.Methods inherited from class AbstractEnumerator
getLiteral, getName, getValue, toString, writeReplace
-
Field Details
-
INSERT
public static final int INSERTThe 'Insert' literal value.If the meaning of 'Insert' literal object isn't clear, there really should be more of a description here...
- See Also:
-
UPDATE
public static final int UPDATEThe 'Update' literal value.If the meaning of 'Update' literal object isn't clear, there really should be more of a description here...
- See Also:
-
DELETE
public static final int DELETEThe 'Delete' literal value.If the meaning of 'Delete' literal object isn't clear, there really should be more of a description here...
- See Also:
-
QUERY
public static final int QUERYThe 'Query' literal value.If the meaning of 'Query' literal object isn't clear, there really should be more of a description here...
- See Also:
-
LOCK
public static final int LOCKThe 'Lock' literal value.If the meaning of 'Lock' literal object isn't clear, there really should be more of a description here...
- See Also:
-
GET_GML_OBJECT
public static final int GET_GML_OBJECTThe 'Get Gml Object' literal value.If the meaning of 'Get Gml Object' literal object isn't clear, there really should be more of a description here...
- See Also:
-
INSERT_LITERAL
The 'Insert' literal object.- See Also:
-
UPDATE_LITERAL
The 'Update' literal object.- See Also:
-
DELETE_LITERAL
The 'Delete' literal object.- See Also:
-
QUERY_LITERAL
The 'Query' literal object.- See Also:
-
LOCK_LITERAL
The 'Lock' literal object.- See Also:
-
GET_GML_OBJECT_LITERAL
The 'Get Gml Object' literal object.- See Also:
-
VALUES
A public read-only list of all the 'Operation Type' enumerators.
-
-
Method Details
-
get
Returns the 'Operation Type' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
Returns the 'Operation Type' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
Returns the 'Operation Type' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-