com.supermap.data.conversion
类 ImportSettings

java.lang.Object
  继承者 com.supermap.data.conversion.ImportSettings

public class ImportSettings
extends java.lang.Object

导入设置信息集合类。可以通过该类来导入设置信息对象的集合。


方法摘要
 int add(ImportSetting importSetting)
          在导入设置信息集合中加入一个指定的元素。
 void clear()
          从导入设置信息集合中移除全部项。
 ImportSetting get(int index)
          返回导入设置信息集合对象中制定的序列号处的导入设置信息对象。
 int getCount()
          返回给定的导入设置信息集合中元素的总数。
 boolean insert(int index, ImportSetting importSetting)
          在导入设置信息集合中的指定序号处加入一个元素。
 boolean remove(int index)
          从导入设置信息集合中移除指定的索引处的项。
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

方法详细信息

getCount

public int getCount()
返回给定的导入设置信息集合中元素的总数。

返回:
给定的导入设置信息集合中元素的总数。

get

public ImportSetting get(int index)
返回导入设置信息集合对象中制定的序列号处的导入设置信息对象。

参数:
index - 制定的序列号。
返回:
导入设置信息集合对象中制定的序列号处的导入设置信息对象。

add

public int add(ImportSetting importSetting)
在导入设置信息集合中加入一个指定的元素。

参数:
importSetting - 要加入的导入设置信息对象。
返回:
新加入元素的序列号。

insert

public boolean insert(int index,
                      ImportSetting importSetting)
在导入设置信息集合中的指定序号处加入一个元素。

参数:
index - 指定的序号。
importSetting - 要加入的导入设置信息对象。
返回:
加入成功返回 true,否则返回 false。

remove

public boolean remove(int index)
从导入设置信息集合中移除指定的索引处的项。

参数:
index - 指定的索引。
返回:
移除成功返回 true,否则返回 false。

clear

public void clear()
从导入设置信息集合中移除全部项。