Package com.luciad.ogc.wfs.common.model
Class TLcdWFSOperation
java.lang.Object
com.luciad.datamodel.TLcdDataObject
com.luciad.ogc.wfs.common.model.TLcdWFSOperation
- All Implemented Interfaces:
ILcdDataObject
,ILcdCloneable
,ILcdDeepCloneable
,Cloneable
This enumeration class represents the possible types of operations that a WFS may support.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final TLcdWFSOperation
Delete operationstatic final TLcdWFSOperation
GetGmlObject operationstatic final TLcdWFSOperation
Insert operationstatic final TLcdWFSOperation
Lock operationstatic final TLcdWFSOperation
Query operationstatic final TLcdWFSOperation
Update operation -
Method Summary
Modifier and TypeMethodDescriptiongetName()
Returns the operation name.void
Sets the operation name.toString()
Returns a string representation of the object.static TLcdWFSOperation
Returns theTLcdWFSOperation
that corresponds with the given operation name.Methods inherited from class com.luciad.datamodel.TLcdDataObject
clone, clone, getDataType, getValue, getValue, hasValue, hasValue, setValue, setValue
-
Field Details
-
INSERT
Insert operation -
UPDATE
Update operation -
DELETE
Delete operation -
QUERY
Query operation -
LOCK
Lock operation -
GETGMLOBJECT
GetGmlObject operation
-
-
Method Details
-
valueOf
Returns theTLcdWFSOperation
that corresponds with the given operation name.- Parameters:
aString
- An operation name.- Returns:
- the
TLcdWFSOperation
that corresponds with the given operation name.
-
toString
Returns a string representation of the object.- Overrides:
toString
in classTLcdDataObject
- Returns:
- a string representation of the object.
-
getName
Returns the operation name.- Returns:
- the operation name.
-
setName
Sets the operation name.- Parameters:
aOperationName
- the operation name to set.
-