public class SupplyCenters extends Object
SupplyCenter
)的集合,用于对资源供给中心对象进行管理,如添加、删除资源供给中心,返回资源供给中心对象的个数,返回指定序号的资源供给中心对象,以及将资源供给中心集合对象转换为资源供给中心对象数组等。构造器和说明 |
---|
SupplyCenters()
构造一个新的 SupplyCenters 对象。
|
SupplyCenters(SupplyCenters supplyCenters)
根据给定的 SupplyCenters 对象构造一个与其完全相同的新对象。
|
限定符和类型 | 方法和说明 |
---|---|
int |
add(SupplyCenter supplyCenter)
添加资源供给中心对象到此集合中,添加成功返回被添加对象的序号。
|
int |
addRange(SupplyCenter[] supplyCenters)
以数组形式向集合中添加资源供给中心对象,添加成功,返回添加的资源供给中心对象的个数。
|
void |
clear()
清空集合中的资源供给中心对象。
|
SupplyCenter |
get(int index)
返回此资源供给中心集合对象中指定序号的资源供给中心对象。
|
int |
getCount()
返回资源供给中心点的个数。
|
boolean |
remove(int index)
在资源供给中心集合中删除指定序号的资源供给中心对象。
|
int |
removeRange(int index,
int count)
在资源供给中心集合中从指定序号开始,删除指定个数的资源供给中心对象。
|
void |
set(int index,
SupplyCenter supplyCenter)
设置此资源供给中心集合对象中指定序号的资源供给中心对象。
|
SupplyCenter[] |
toArray()
将资源供给中心集合对象转换为资源供给中心对象数组。
|
public SupplyCenters()
public SupplyCenters(SupplyCenters supplyCenters)
supplyCenters
- 指定的 SupplyCenters 对象。public int getCount()
public SupplyCenter get(int index)
index
- 指定的序号。public void set(int index, SupplyCenter supplyCenter)
index
- 指定中心点的索引。supplyCenter
- 中心点信息。public int add(SupplyCenter supplyCenter)
supplyCenter
- 待添加的资源供给中心对象。public int addRange(SupplyCenter[] supplyCenters)
supplyCenters
- 待添加的资源供给中心对象。public boolean remove(int index)
index
- 指定的序号。public int removeRange(int index, int count)
index
- 指定的序号。count
- 待删除的资源供给中心个数。public void clear()
public SupplyCenter[] toArray()
Copyright © 2021–2024 SuperMap. All rights reserved.