FormFieldCollection
遗产: java.lang.Object
所有已实现的接口: java.lang.Iterable
public class FormFieldCollection implements Iterable
的集合FormField表示范围内所有表单域的对象。
要了解更多信息,请访问Working with Form Fields文档文章。
方法
方法 | 描述 |
---|---|
clear() | 从此集合和文档中删除所有表单域。 |
equals(Object arg0) | |
get(int index) | 返回指定索引处的表单字段。 |
get(String bookmarkName) | 按书签名称返回表单字段。 |
getClass() | |
getCount() | 返回集合中表单字段的数量。 |
hashCode() | |
iterator() | 返回一个枚举器对象。 |
notify() | |
notifyAll() | |
remove(String formField) | 删除具有指定名称的表单域。 |
removeAt(int index) | 删除指定索引处的表单字段。 |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
clear()
public void clear()
从此集合和文档中删除所有表单域。
equals(Object arg0)
public boolean equals(Object arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | java.lang.Object |
退货: 布尔值
get(int index)
public FormField get(int index)
返回指定索引处的表单字段。
该指数是从零开始的。
允许使用负索引,表示从集合的后面访问。例如 -1 表示最后一项,-2 表示倒数第二项,依此类推。
如果索引大于或等于列表中的项目数,则返回空引用。
如果索引为负且其绝对值大于列表中的项目数,则返回空引用。
参数:
范围 | 类型 | 描述 |
---|---|---|
index | int | 集合中的索引。 |
退货: FormField - 指定索引处的表单域。
get(String bookmarkName)
public FormField get(String bookmarkName)
按书签名称返回表单字段。如果找不到具有指定书签名称的表单域,则返回 null。
参数:
范围 | 类型 | 描述 |
---|---|---|
bookmarkName | java.lang.String | 不区分大小写的书签名称。 |
退货: FormField - 书签名称的表单字段。
getClass()
public final native Class<?> getClass()
退货: java.lang.Class
getCount()
public int getCount()
返回集合中表单字段的数量。
退货: int - 集合中表单字段的数量。
hashCode()
public native int hashCode()
退货: 整数
iterator()
public Iterator iterator()
返回一个枚举器对象。
退货: java.util.迭代器
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
remove(String formField)
public void remove(String formField)
删除具有指定名称的表单域。如果存在与表单域关联的书签,则不会删除该书签。
参数:
范围 | 类型 | 描述 |
---|---|---|
formField | java.lang.String | 要删除的表单域的名称,不区分大小写。 |
removeAt(int index)
public void removeAt(int index)
删除指定索引处的表单字段。如果存在与表单域关联的书签,则不会删除该书签。
参数:
范围 | 类型 | 描述 |
---|---|---|
index | int | 要删除的表单字段的从零开始的索引。 |
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 |