DropDownItemCollection
遗产: java.lang.Object
所有已实现的接口: java.lang.Iterable
public class DropDownItemCollection implements Iterable
代表下拉表单字段中所有项目的字符串集合。
要了解更多信息,请访问Working with Fields文档文章。
方法
方法 | 描述 |
---|---|
add(String value) | |
clear() | 从集合中移除所有元素。 |
contains(String value) | 确定集合是否包含指定值。 |
equals(Object arg0) | |
get(int index) | 获取指定索引处的元素。 |
getClass() | |
getCount() | 获取集合中包含的元素数。 |
hashCode() | |
indexOf(String value) | 返回集合中指定值的从零开始的索引。 |
insert(int index, String value) | 将字符串插入到指定索引处的集合中。 |
isInheritedComplexAttr() | |
iterator() | 返回一个迭代器对象,该对象可用于迭代集合中的所有项目。 |
notify() | |
notifyAll() | |
remove(String name) | 从集合中移除指定的值。 |
removeAt(int index) | 删除指定索引处的值。 |
set(int index, String value) | 设置指定索引处的元素。 |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
add(String value)
public int add(String value)
参数:
范围 | 类型 | 描述 |
---|---|---|
value | java.lang.String |
退货: 整数
clear()
public void clear()
从集合中移除所有元素。
contains(String value)
public boolean contains(String value)
确定集合是否包含指定值。
参数:
范围 | 类型 | 描述 |
---|---|---|
value | java.lang.String | 要定位的区分大小写的值。 |
退货: boolean - 如果在集合中找到该项目则为真;否则,假的。
equals(Object arg0)
public boolean equals(Object arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | java.lang.Object |
退货: 布尔值
get(int index)
public String get(int index)
获取指定索引处的元素。
参数:
范围 | 类型 | 描述 |
---|---|---|
index | int |
退货: java.lang.String - 指定索引处的元素。
getClass()
public final native Class<?> getClass()
退货: java.lang.Class
getCount()
public int getCount()
获取集合中包含的元素数。
退货: int - 集合中包含的元素数。
hashCode()
public native int hashCode()
退货: 整数
indexOf(String value)
public int indexOf(String value)
返回集合中指定值的从零开始的索引。
参数:
范围 | 类型 | 描述 |
---|---|---|
value | java.lang.String | 要查找的区分大小写的值。 |
退货: int - 从零开始的索引。如果未找到,则为负值。
insert(int index, String value)
public void insert(int index, String value)
将字符串插入到指定索引处的集合中。
参数:
范围 | 类型 | 描述 |
---|---|---|
index | int | 插入值的从零开始的索引。 |
value | java.lang.String | 要插入的字符串。 |
isInheritedComplexAttr()
public boolean isInheritedComplexAttr()
退货: 布尔值
iterator()
public Iterator iterator()
返回一个迭代器对象,该对象可用于迭代集合中的所有项目。
退货: java.util.迭代器
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
remove(String name)
public void remove(String name)
从集合中移除指定的值。
参数:
范围 | 类型 | 描述 |
---|---|---|
name | java.lang.String | 要删除的区分大小写的值。 |
removeAt(int index)
public void removeAt(int index)
删除指定索引处的值。
参数:
范围 | 类型 | 描述 |
---|---|---|
index | int | 从零开始的索引。 |
set(int index, String value)
public void set(int index, String value)
设置指定索引处的元素。
参数:
范围 | 类型 | 描述 |
---|---|---|
index | int | |
value | java.lang.String | 指定索引处的元素。 |
toString()
public String toString()
退货: java.lang.字符串
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | long | |
arg1 | int |