|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.util.AbstractCollection<E> java.util.AbstractList<E> java.util.ArrayList<Object> javax.management.AttributeList
public class AttributeList
表示 MBean 屬性值的列表。用於在 AttributeList
中插入 Attribute
物件的方法應覆寫父級類別 ArrayList
中的相應方法。為了確保 AttributeList
中所包含的物件只是 Attribute
物件,這是必需的。這可避免在檢索 AttributeList
中的元素時出現異常。
欄位摘要 |
---|
從類別 java.util.AbstractList 繼承的欄位 |
---|
modCount |
建構子摘要 | |
---|---|
AttributeList()
建構一個空 AttributeList 。 |
|
AttributeList(AttributeList list)
建構一個套件含指定 AttributeList 元素的 AttributeList ,元素的順序是該 AttributeList 的迭代器所返回的順序。 |
|
AttributeList(int initialCapacity)
建構一個具有指定初始容量的空 AttributeList 。 |
|
AttributeList(List<Attribute> list)
建構一個套件含指定 List 的元素的 AttributeList ,這些元素按 List 的迭代器返回的順序排列。 |
方法摘要 | |
---|---|
void |
add(Attribute object)
添加指定的 Attribute 作為列表的最後一個元素。 |
void |
add(int index,
Attribute object)
插入指定的屬性作為指定位置處的元素。 |
void |
add(int index,
Object element)
將指定的元素插入此列表中的指定位置。 |
boolean |
add(Object o)
將指定的元素添加到此列表的尾部。 |
boolean |
addAll(AttributeList list)
將指定 AttributeList 中的所有元素追加到列表的末尾,元素的順序是指定 AttributeList 的 Iterator 所返回的順序。 |
boolean |
addAll(Collection<?> c)
按照指定 collection 的迭代器所返回的元素順序,將該 collection 中的所有元素添加到此列表的尾部。 |
boolean |
addAll(int index,
AttributeList list)
將指定 AttributeList 中的所有元素插入此列表,從指定的位置開始插入,元素的順序是指定 Attribute 的 Iterator 所返回的順序。 |
boolean |
addAll(int index,
Collection<?> c)
從指定的位置開始,將指定 collection 中的所有元素插入到此列表中。 |
List<Attribute> |
asList()
以 List<Attribute> 的形式返回此列表的視圖。 |
void |
set(int index,
Attribute object)
將指定位置的元素設置為指定的屬性。 |
Object |
set(int index,
Object element)
用指定的元素替代此列表中指定位置上的元素。 |
從類別 java.util.ArrayList 繼承的方法 |
---|
clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, size, toArray, toArray, trimToSize |
從類別 java.util.AbstractList 繼承的方法 |
---|
equals, hashCode, iterator, listIterator, listIterator, subList |
從類別 java.util.AbstractCollection 繼承的方法 |
---|
containsAll, removeAll, retainAll, toString |
從類別 java.lang.Object 繼承的方法 |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
從介面 java.util.List 繼承的方法 |
---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
建構子詳細資訊 |
---|
public AttributeList()
AttributeList
。
public AttributeList(int initialCapacity)
AttributeList
。
initialCapacity
- AttributeList
的初始容量,正如 ArrayList.ArrayList(int)
所指定的那樣。public AttributeList(AttributeList list)
AttributeList
元素的 AttributeList
,元素的順序是該 AttributeList
的迭代器所返回的順序。AttributeList
實例的初始容量是指定 AttributeList
大小的 110%。
list
- 定義新 AttributeList
的初始內容的 AttributeList
。ArrayList.ArrayList(java.util.Collection)
public AttributeList(List<Attribute> list)
List
的元素的 AttributeList
,這些元素按 List
的迭代器返回的順序排列。
list
- 定義新 AttributeList
初始內容的 List
。
IllegalArgumentException
- 如果 list
參數為 null
或者 list
參數包含任何非 Attribute 物件。ArrayList.ArrayList(java.util.Collection)
方法詳細資訊 |
---|
public List<Attribute> asList()
List<Attribute>
的形式返回此列表的視圖。對返回值的更改將通過對原 AttributeList
的更改反映出來,反之亦然。
List<Attribute>
,其內容反映此 AttributeList
的內容。
如果給定的 AttributeList
實例曾經調用過此方法,則之後試圖對該實例添加非 Attribute
物件的操作將會失敗,並拋出 IllegalArgumentException
。出於相容性原因,允許向從未調用過此方法的 AttributeList
添加非 Attribute
物件。
IllegalArgumentException
- 如果此 AttributeList
套件含非 Attribute
元素。public void add(Attribute object)
Attribute
作為列表的最後一個元素。
object
- 要添加的屬性。public void add(int index, Attribute object)
object
- 要插入的 Attribute
物件。index
- 列表中插入新 Attribute
物件的位置。public void set(int index, Attribute object)
object
- 屬性元素應該被設置的值。index
- 指定的位置。public boolean addAll(AttributeList list)
AttributeList
中的所有元素追加到列表的末尾,元素的順序是指定 AttributeList
的 Iterator 所返回的順序。
list
- 要插入該列表的元素。
ArrayList.addAll(java.util.Collection)
public boolean addAll(int index, AttributeList list)
AttributeList
中的所有元素插入此列表,從指定的位置開始插入,元素的順序是指定 Attribute
的 Iterator 所返回的順序。如果 index 超出範圍 (index < 0 || index > size()),則將引發 RuntimeOperationsException,並包裹所拋出的 java.lang.IndexOutOfBoundsException。
list
- 要插入該列表的元素。index
- 插入指定 AttributeList
中首個元素的位置。
ArrayList.addAll(int, java.util.Collection)
public boolean add(Object o)
ArrayList
複製的描述
Collection<Object>
中的 add
List<Object>
中的 add
ArrayList<Object>
中的 add
o
- 要添加到此列表中的元素
Collection.add(E)
的指定)public void add(int index, Object element)
ArrayList
複製的描述
List<Object>
中的 add
ArrayList<Object>
中的 add
index
- 指定元素所插入位置的索引element
- 要插入的元素public boolean addAll(Collection<?> c)
ArrayList
複製的描述
Collection<Object>
中的 addAll
List<Object>
中的 addAll
ArrayList<Object>
中的 addAll
c
- 套件含要添加到此列表中的元素的 collection
AbstractCollection.add(Object)
public boolean addAll(int index, Collection<?> c)
ArrayList
複製的描述
List<Object>
中的 addAll
ArrayList<Object>
中的 addAll
index
- 插入指定 collection 中的首個元素的位置索引c
- 套件含要添加到此列表中元素的 collection
public Object set(int index, Object element)
ArrayList
複製的描述
List<Object>
中的 set
ArrayList<Object>
中的 set
index
- 要替代的元素的索引element
- 存儲在指定位置上的元素
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。