abstract                                                            long         addFeature(Feature feature)

Adds the given feature to the table.
            abstract                                                            long[]         addFeatures(List<Feature> features)

Adds the given features to the table.
            abstract                                                            void         deleteFeature(long featureId)

Deletes the specified feature from the table.
            abstract                                                            void         deleteFeatures(long[] featureId)

Deletes the specified features from the table.
            abstract                                                            String         getCopyright()

Gets the copyright information.
            abstract                                                             Envelope         getExtent()

Returns the full extent associated with this feature table.
            abstract                                                             Feature         getFeature(long id)

Retrieves the feature with the given ID from the table.
            abstract                                                             FeatureResult         getFeatures(long[] ids)

Retrieves the features with the given IDs from the table.
            abstract                                                             Field         getField(String fieldName)

Returns the Field object with the specified field name.
            abstract                                                            List<Field>         getFields()

Returns all the Fields in the table.
            abstract                                                            long         getNumberOfFeatures()

Gets the number of features in the table.
            abstract                                                             SpatialReference         getSpatialReference()

Returns the spatial reference that the geometries in this table are in.
            abstract                                                            String         getTableName()

This returns the table name as defined by the table type.
abstract boolean         hasGeometry()

This returns true if this feature table has a geometry column.
            abstract                                                            boolean         isEditable()

Checks if the table can be edited.
            abstract                                                            Future<FeatureResult>         queryFeatures(QueryParameters query, CallbackListener<FeatureResult> callback)

Queries the table using the given query parameters, and returns an iterator  of features found by the query.
            abstract                                                            Future<long[]>         queryIds(QueryParameters query, CallbackListener<long[]> callback)

Queries the table using the given query parameters, and returns an array  of feature IDs found by the query.
                                                                        String         toString()          
            abstract                                                            void         updateFeature(long featureId, Feature feature)

Updates the feature specified by the unique feature ID.
            abstract                                                            void         updateFeatures(long[] featureIds, List<Feature> features)

Updates the features specified by the array of feature IDs passed in.

FeatureTable()的更多相关文章

  1. 京东评论情感分类器(基于bag-of-words模型)

    京东评论情感分类器(基于bag-of-words模型) 近期在本来在研究paraVector模型,想拿bag-of-words来做对照. 数据集是京东的评论,经过人工挑选,选出一批正面和负面的评论. ...

  2. Cesium原理篇:3D Tiles(2)数据结构

    上一节介绍3D Tiles渲染调度的时候,我们提到目前Cesium支持的Cesium3DTileContent目前支持如下类型: Batched3DModel3DTileContent Instanc ...

  3. Cesium原理篇:3D Tiles(3)个人总结

    个人结论:目前,在演示层面,3D Tiles问题不大,但项目应用上就不够成熟了,所以问问自己,你是想吃瓜呢还是想吃螃蟹? 好的方面 数据规范 我非常喜欢glTF的整体设计,概括有四点:第一,数据块(B ...

  4. ArcGIS API for JavaScript 4.2学习笔记[0] AJS4.2概述、新特性、未来产品线计划与AJS笔记目录

    放着好好的成熟的AJS 3.19不学,为什么要去碰乳臭未干的AJS 4.2? 4.2全线基础学习请点击[直达] 4.3及更高版本的补充学习请关注我的博客. ArcGIS API for JavaScr ...

  5. [置顶] ArcGIS Runtime SDKs 10.2 for iOS & Android& OS X发布

    我们高兴的宣布:ArcGISRuntime SDKs 10.2 for iOS & Android & OS X正式发布!在10.2版本中,你可以在iOS.Android和Mac设备上 ...

  6. 扩增子分析QIIME2. 1简介和安装

    原网站:https://blog.csdn.net/woodcorpse/article/details/75103929 声明:本文为QIIME2官方帮助文档的中文版,由中科院遗传发育所刘永鑫博士翻 ...

  7. arcgis andriod Edit features

    来自:https://developers.arcgis.com/android/guide/edit-features.htm#ESRI_SECTION1_56C60DB71AF941E98668A ...

  8. 扩增子分析QIIME2-3数据导出Exporting data

    # 激活工作环境 source activate qiime2-2017.8 # 建立工作目录 mkdir -p qiime2-exporting-tutorial cd qiime2-exporti ...

  9. 扩增子分析QIIME2-2数据导入Importing data

    # 激活工作环境 source activate qiime2-2017.8 # 建立工作目录 mkdir -p qiime2-importing-tutorial cd qiime2-importi ...

随机推荐

  1. HDU 1686 Oulipo(KMP变形求子串出现数目(可重))

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1686 题目大意:给两个字符串A,B求出A中出现了几次B(计算重复部分). 解题思路:稍微对kmp()函 ...

  2. golang-goroutine和channel

    goroutine 在go语言中,每一个并发的执行单元叫做一个goroutine 这里说到并发,所以先解释一下并发和并行的概念: 并发:逻辑上具备同时处理多个任务的能力 并行:物理上在同一时刻执行多个 ...

  3. 深度学习方法(十):卷积神经网络结构变化——Maxout Networks,Network In Network,Global Average Pooling

    欢迎转载,转载请注明:本文出自Bin的专栏blog.csdn.net/xbinworld. 技术交流QQ群:433250724,欢迎对算法.技术感兴趣的同学加入. 最近接下来几篇博文会回到神经网络结构 ...

  4. appium---【Mac】appium-doctor提示WARN:“fbsimctl cannot be found”解决方案

    报错提示截图如下: 解决方案: brew tap facebook/fb brew install fbsimctl --HEAD 执行完命令重新运营appium-doctor即可看到成功已安装此包:

  5. java 反射 报错:Attempt to get java.lang.Integer field "..." with illegal data type conversion to int

    类: Integer id; 反射时: Field f = User.class.getDeclaredField("id"); f.setAccessible(true); in ...

  6. (10) go 错误

    没有 try catch..f.. 自定义错误

  7. Django+Nginx+uwsgi搭建自己的博客(六)

    这篇应该是2017年的最后一篇博客了,在这里首先祝大家元旦快乐! 从这篇博客开始,将会介绍Blogs App的功能实现,包括数据模型的建立.相关功能的视图函数的实现.前端页面的设计等,这意味着我们即将 ...

  8. svn代码同步脚本

    碰到一个需求,主要是2个项目需要用到同一份代码,主要是域名和配置信息不一样,而且要把svn更新的代码同步过去.本来考虑提交时用钩子同步过去,但考虑到同步过去的代码还需要测试,而且另一边代码的时效性不强 ...

  9. React Native踩坑之启动android模拟器失败

    报错 Could not install the app on the device, read the error above for details.Make sure you have an A ...

  10. FastReport.Net使用:[14]文本控件使用

    文本控件(Text)是FastReport中最常用的控件了,它可以是一行\多行文本.数据源的列.报表参数.汇总值.表达式,它还可以是以上任何元素的组合. 如何使用文本编辑器 1.双击文本框进入文本编辑 ...