所有类
javax.management
类 AttributeList
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
javax.management.AttributeList
-
所有已实现的接口:
-
Serializable, Cloneable, Iterable, Collection, List, RandomAccess
-
public class AttributeList
- extends ArrayList
表示 MBean 属性值的列表。用于在 AttributeList
中插入 Attribute
对象的方法应重写超类 ArrayList
中的相应方法。为了确保 AttributeList
中所包含的对象只是 Attribute
对象,这是必需的。这可避免在检索 AttributeList
中的元素时出现异常。
-
从以下版本开始:
-
1.5
-
另请参见:
-
序列化表格
方法摘要 |
void |
add(Attribute object) 添加指定的 Attribute 作为列表的最后一个元素。 |
void |
add(int index, Attribute object) 插入指定的属性作为指定位置处的元素。 |
boolean |
addAll(AttributeList list) 将指定 AttributeList 中的所有元素追加到列表的末尾,元素的顺序是指定 AttributeList 的 Iterator 所返回的顺序。 |
boolean |
addAll(int index, AttributeList list) 将指定 AttributeList 中的所有元素插入此列表,从指定的位置开始插入,元素的顺序是指定 AttributeList 的 Iterator 所返回的顺序。 |
void |
set(int index, Attribute object) 将指定位置的元素设置为指定的属性。 |
从类 java.util.ArrayList 继承的方法 |
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, set, size, toArray, toArray, trimToSize |
AttributeList
public AttributeList()
-
构造一个空
AttributeList
。
AttributeList
public AttributeList(int initialCapacity)
-
构造一个具有指定初始容量的空
AttributeList
。
-
参数:
-
initialCapacity
- AttributeList
的初始容量,正如 ArrayList.ArrayList(int)
所指定的一样。
AttributeList
public AttributeList(AttributeList list)
-
构造一个包含指定
AttributeList
元素的 AttributeList
,元素的顺序是该 AttributeList
的迭代器所返回的顺序。AttributeList
实例的初始容量是指定 AttributeList
大小的 110%。
-
参数:
-
list
- 定义新 AttributeList
的初始内容的 AttributeList
。
-
另请参见:
-
ArrayList.ArrayList(java.util.Collection)
add
public void add(Attribute object)
-
添加指定的
Attribute
作为列表的最后一个元素。
-
-
参数:
-
object
- 要添加的属性。
add
public void add(int index,
Attribute object)
-
插入指定的属性作为指定位置处的元素。其索引大于等于当前位置索引的元素会向上移动。如果 index 超出范围 (index < 0 || index > size()),则将引发 RuntimeOperationsException,它包装所抛出的 java.lang.IndexOutOfBoundsException。
-
-
参数:
-
object
- 要插入的 Attribute
对象。
-
index
- 列表中插入新 Attribute
对象的位置。
set
public void set(int index,
Attribute object)
-
将指定位置的元素设置为指定的属性。丢弃该位置以前的元素。如果 index 超出范围 (index < 0 || index > size()),则将引发 RuntimeOperationsException,它包装所抛出的 java.lang.IndexOutOfBoundsException。
-
-
参数:
-
object
- 属性元素应该被设置的值。
-
index
- 指定的位置。
addAll
public boolean addAll(AttributeList list)
-
将指定
AttributeList
中的所有元素追加到列表的末尾,元素的顺序是指定 AttributeList
的 Iterator 所返回的顺序。
-
-
参数:
-
list
- 要插入该列表的元素。
-
返回:
-
如果此列表由于调用而更改,则返回 true。
-
另请参见:
-
ArrayList.addAll(java.util.Collection)
addAll
public boolean addAll(int index,
AttributeList list)
-
将指定
AttributeList
中的所有元素插入此列表,从指定的位置开始插入,元素的顺序是指定 AttributeList
的 Iterator 所返回的顺序。如果 index 超出范围 (index < 0 || index > size()),则将引发 RuntimeOperationsException,它包装所抛出的 java.lang.IndexOutOfBoundsException。
-
-
参数:
-
list
- 要插入该列表的元素。
-
index
- 插入指定 AttributeList
中首个元素的位置。
-
返回:
-
如果此列表由于调用而更改,则返回 true。
-
另请参见:
-
ArrayList.addAll(int, java.util.Collection)