Package net.opengis.wfs
Class OperationType
- Object
- 
- AbstractEnumerator
- 
- OperationType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Enumerator
 
 public final class OperationType extends AbstractEnumeratorA representation of the literals of the enumeration 'Operation Type', and utility methods for working with them.- See Also:
- WfsPackage.getOperationType(), Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description static intDELETEThe 'Delete' literal value.static OperationTypeDELETE_LITERALThe 'Delete' literal object.static intGET_GML_OBJECTThe 'Get Gml Object' literal value.static OperationTypeGET_GML_OBJECT_LITERALThe 'Get Gml Object' literal object.static intINSERTThe 'Insert' literal value.static OperationTypeINSERT_LITERALThe 'Insert' literal object.static intLOCKThe 'Lock' literal value.static OperationTypeLOCK_LITERALThe 'Lock' literal object.static intQUERYThe 'Query' literal value.static OperationTypeQUERY_LITERALThe 'Query' literal object.static intUPDATEThe 'Update' literal value.static OperationTypeUPDATE_LITERALThe 'Update' literal object.static ListVALUESA public read-only list of all the 'Operation Type' enumerators.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static OperationTypeget(int value)Returns the 'Operation Type' literal with the specified integer value.static OperationTypeget(String literal)Returns the 'Operation Type' literal with the specified literal value.static OperationTypegetByName(String name)Returns the 'Operation Type' literal with the specified name.
 
- 
- 
- 
Field Detail- 
INSERTpublic static final int INSERT The 'Insert' literal value.If the meaning of 'Insert' literal object isn't clear, there really should be more of a description here... - See Also:
- INSERT_LITERAL, Constant Field Values
 
 - 
UPDATEpublic static final int UPDATE The 'Update' literal value.If the meaning of 'Update' literal object isn't clear, there really should be more of a description here... - See Also:
- UPDATE_LITERAL, Constant Field Values
 
 - 
DELETEpublic static final int DELETE The 'Delete' literal value.If the meaning of 'Delete' literal object isn't clear, there really should be more of a description here... - See Also:
- DELETE_LITERAL, Constant Field Values
 
 - 
QUERYpublic static final int QUERY The 'Query' literal value.If the meaning of 'Query' literal object isn't clear, there really should be more of a description here... - See Also:
- QUERY_LITERAL, Constant Field Values
 
 - 
LOCKpublic static final int LOCK The 'Lock' literal value.If the meaning of 'Lock' literal object isn't clear, there really should be more of a description here... - See Also:
- LOCK_LITERAL, Constant Field Values
 
 - 
GET_GML_OBJECTpublic static final int GET_GML_OBJECT The '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:
- GET_GML_OBJECT_LITERAL, Constant Field Values
 
 - 
INSERT_LITERALpublic static final OperationType INSERT_LITERAL The 'Insert' literal object.- See Also:
- INSERT
 
 - 
UPDATE_LITERALpublic static final OperationType UPDATE_LITERAL The 'Update' literal object.- See Also:
- UPDATE
 
 - 
DELETE_LITERALpublic static final OperationType DELETE_LITERAL The 'Delete' literal object.- See Also:
- DELETE
 
 - 
QUERY_LITERALpublic static final OperationType QUERY_LITERAL The 'Query' literal object.- See Also:
- QUERY
 
 - 
LOCK_LITERALpublic static final OperationType LOCK_LITERAL The 'Lock' literal object.- See Also:
- LOCK
 
 - 
GET_GML_OBJECT_LITERALpublic static final OperationType GET_GML_OBJECT_LITERAL The 'Get Gml Object' literal object.- See Also:
- GET_GML_OBJECT
 
 - 
VALUESpublic static final List VALUES A public read-only list of all the 'Operation Type' enumerators.
 
- 
 - 
Method Detail- 
getpublic static OperationType get(String literal) Returns the 'Operation Type' literal with the specified literal value.- Parameters:
- literal- the literal.
- Returns:
- the matching enumerator or null.
 
 - 
getByNamepublic static OperationType getByName(String name) Returns the 'Operation Type' literal with the specified name.- Parameters:
- name- the name.
- Returns:
- the matching enumerator or null.
 
 - 
getpublic static OperationType get(int value) Returns the 'Operation Type' literal with the specified integer value.- Parameters:
- value- the integer value.
- Returns:
- the matching enumerator or null.
 
 
- 
 
-