CustomXmlPropertyCollection

遗产: java.lang.Object

所有已实现的接口: java.lang.Iterable

public class CustomXmlPropertyCollection implements Iterable

表示自定义 XML 属性或智能标记属性的集合。

要了解更多信息,请访问Structured Document Tags or Content Control文档文章。

项目是CustomXmlProperty对象。

方法

方法描述
add(CustomXmlProperty property)向集合中添加一个属性。
clear()从集合中移除所有元素。
contains(String name)确定集合是否包含具有给定名称的属性。
equals(Object arg0)
get(int index)获取指定索引处的属性。
get(String name)提供对集合项的访问。
getClass()
getCount()获取集合中包含的元素数。
hashCode()
indexOfKey(String name)返回集合中指定属性的从零开始的索引。
iterator()返回一个迭代器对象,该对象可用于迭代集合中的所有项目。
notify()
notifyAll()
remove(String name)从集合中移除具有指定名称的属性。
removeAt(int index)删除指定索引处的属性。
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

add(CustomXmlProperty property)

public void add(CustomXmlProperty property)

向集合中添加一个属性。

参数:

范围类型描述
propertyCustomXmlProperty要添加的属性。

clear()

public void clear()

从集合中移除所有元素。

contains(String name)

public boolean contains(String name)

确定集合是否包含具有给定名称的属性。

参数:

范围类型描述
namejava.lang.String要查找的属性的区分大小写的名称。

退货: boolean - 如果在集合中找到该项目则为真;否则,假的。

equals(Object arg0)

public boolean equals(Object arg0)

参数:

范围类型描述
arg0java.lang.Object

退货: 布尔值

get(int index)

public CustomXmlProperty get(int index)

获取指定索引处的属性。

参数:

范围类型描述
indexint属性的从零开始的索引。

退货: CustomXmlProperty - 指定索引处的属性。

get(String name)

public CustomXmlProperty get(String name)

提供对集合项的访问。获取具有指定名称的属性。

参数:

范围类型描述
namejava.lang.String要查找的属性的区分大小写的名称。

退货: CustomXmlProperty - 相应的CustomXmlProperty价值。

getClass()

public final native Class<?> getClass()

退货: java.lang.Class

getCount()

public int getCount()

获取集合中包含的元素数。

退货: int - 集合中包含的元素数。

hashCode()

public native int hashCode()

退货: 整数

indexOfKey(String name)

public int indexOfKey(String name)

返回集合中指定属性的从零开始的索引。

参数:

范围类型描述
namejava.lang.String属性的区分大小写的名称。

退货: int - 从零开始的索引。如果未找到,则为负值。

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)

从集合中移除具有指定名称的属性。

参数:

范围类型描述
namejava.lang.String属性的区分大小写的名称。

removeAt(int index)

public void removeAt(int index)

删除指定索引处的属性。

参数:

范围类型描述
indexint从零开始的索引。

toString()

public String toString()

退货: java.lang.字符串

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

参数:

范围类型描述
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

参数:

范围类型描述
arg0long
arg1int