com.supermap.web.ogc.wfs
public class WFSTUpdateParam
继承 WFSTUpdateParam Inheritance WFSTBaseParam Inheritance Object

插入(update)操作参数类.

该类用于设置执行事务操作——更新(update)所需的参数。



公共属性
  属性 定义方
    featureIDs : Array
被更新要素的 ID 号集合。当该属性与 filter 属性同时设置时,首选该属性。
WFSTUpdateParam
    filter : Filter
被更新要素的过滤条件。例如要删除与某一几何对象相交的对象时,就可通过设置该过滤参数获取被更新要素。当该属性与 featureIDs 属性同时设置时,首选 featureIDs。
WFSTUpdateParam
    modifyFeature : Feature
目标要素,即将 featureIDs 或 filter 属性所指定的被更新要素全部更新为该属性所指定的要素,更新内容包括要素的几何信息(geometry)和属性信息(attributes)。若 geometry 或 attributes 属性为空,则不更新 geometry 或 attributes。
WFSTUpdateParam
    spatialProperty : String
描述要素几何信息的属性名称。如:SuperMap iServer Java 6R 服务器产品所提供的 WFS 服务中,用于描述要素几何信息的字段一般为:"the_geom"。
WFSTUpdateParam
  Inherited typeName : String
被执行操作的数据集名称。如:"World:Rivers"。必设属性。
WFSTBaseParam
公共方法
  方法 定义方
   
实例化 WFSTUpdateParam 对象。
WFSTUpdateParam
属性详细信息
featureIDs 属性
featureIDs:Array

被更新要素的 ID 号集合。当该属性与 filter 属性同时设置时,首选该属性。


Implementation
    public function get featureIDs():Array
    public function set featureIDs(value:Array):void

另请参见

filter 属性  
filter:Filter

被更新要素的过滤条件。例如要删除与某一几何对象相交的对象时,就可通过设置该过滤参数获取被更新要素。当该属性与 featureIDs 属性同时设置时,首选 featureIDs。


Implementation
    public function get filter():Filter
    public function set filter(value:Filter):void

另请参见

modifyFeature 属性  
modifyFeature:Feature

目标要素,即将 featureIDs 或 filter 属性所指定的被更新要素全部更新为该属性所指定的要素,更新内容包括要素的几何信息(geometry)和属性信息(attributes)。若 geometry 或 attributes 属性为空,则不更新 geometry 或 attributes。


Implementation
    public function get modifyFeature():Feature
    public function set modifyFeature(value:Feature):void

另请参见

spatialProperty 属性  
spatialProperty:String

描述要素几何信息的属性名称。如:SuperMap iServer Java 6R 服务器产品所提供的 WFS 服务中,用于描述要素几何信息的字段一般为:"the_geom"。


Implementation
    public function get spatialProperty():String
    public function set spatialProperty(value:String):void
构造函数详细信息
WFSTUpdateParam () 构造函数
public function WFSTUpdateParam()

实例化 WFSTUpdateParam 对象。