JavaTM 2 Platform
Standard Ed. 6

javax.management.relation
類別 RoleUnresolvedList

java.lang.Object
  繼承者 java.util.AbstractCollection<E>
      繼承者 java.util.AbstractList<E>
          繼承者 java.util.ArrayList<Object>
              繼承者 javax.management.relation.RoleUnresolvedList
所有已實作的介面:
Serializable, Cloneable, Iterable<Object>, Collection<Object>, List<Object>, RandomAccess

public class RoleUnresolvedList
extends ArrayList<Object>

RoleUnresolvedList 表示 RoleUnresolved 物件的列表,這些物件代表在試圖存取角色(進行讀取或寫入)時遇到問題而無法從關係檢索到的角色。

從以下版本開始:
1.5
另請參見:
序列化表格

欄位摘要
 
從類別 java.util.AbstractList 繼承的欄位
modCount
 
建構子摘要
RoleUnresolvedList()
          建構一個空的 RoleUnresolvedList。
RoleUnresolvedList(int initialCapacity)
          建構一個具有指定初始容量的空 RoleUnresolvedList。
RoleUnresolvedList(List<RoleUnresolved> list)
          建構一個套件含指定 List 元素的 RoleUnresolvedList,這些元素按 List 迭代器返回的順序排列。
 
方法摘要
 void add(int index, Object element)
          將指定的元素插入此列表中的指定位置。
 void add(int index, RoleUnresolved role)
          在指定位置處插入指定為元素的未解析角色。
 boolean add(Object o)
          將指定的元素添加到此列表的尾部。
 void add(RoleUnresolved role)
          添加指定為列表中最後一個元素的 RoleUnresolved。
 boolean addAll(Collection<?> c)
          按照指定 collection 的迭代器所返回的元素順序,將該 collection 中的所有元素添加到此列表的尾部。
 boolean addAll(int index, Collection<?> c)
          從指定的位置開始,將指定 collection 中的所有元素插入到此列表中。
 boolean addAll(int index, RoleUnresolvedList roleList)
          從指定位置開始,將指定 RoleUnresolvedList 中的所有元素插入此列表,這些元素按指定 RoleUnresolvedList 的迭代器返回的順序排列。
 boolean addAll(RoleUnresolvedList roleList)
          將指定 RoleUnresolvedList 中的所有元素追加到列表末尾,這些元素按指定 RoleUnresolvedList 的迭代器返回的順序排列。
 List<RoleUnresolved> asList()
          以 List<RoleUnresolved> 的形式返回此列表的視圖。
 Object set(int index, Object element)
          用指定的元素替代此列表中指定位置上的元素。
 void set(int index, RoleUnresolved role)
          將指定位置處的元素設置為指定的未解析角色。
 
從類別 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
 

建構子詳細資訊

RoleUnresolvedList

public RoleUnresolvedList()
建構一個空的 RoleUnresolvedList。


RoleUnresolvedList

public RoleUnresolvedList(int initialCapacity)
建構一個具有指定初始容量的空 RoleUnresolvedList。

參數:
initialCapacity - 初始容量

RoleUnresolvedList

public RoleUnresolvedList(List<RoleUnresolved> list)
                   throws IllegalArgumentException
建構一個套件含指定 List 元素的 RoleUnresolvedList,這些元素按 List 迭代器返回的順序排列。RoleUnresolvedList 實例的初始容量是指定 List 大小的 110%。

參數:
list - 定義新 RoleUnresolvedList 初始內容的 List
拋出:
IllegalArgumentException - 如果 list 參數為 null 或者 list 參數包含任何非 RoleUnresolved 物件。
另請參見:
ArrayList.ArrayList(java.util.Collection)
方法詳細資訊

asList

public List<RoleUnresolved> asList()
List<RoleUnresolved> 的形式返回此列表的視圖。對返回值的更改將通過對原 RoleUnresolvedList 的更改反映出來,反之亦然。

返回:
一個 List<RoleUnresolved>,其內容反映此 RoleUnresolvedList 的內容。

如果曾經對給定的 RoleUnresolvedList 實例調用過此方法,則之後試圖對該實例添加非 RoleUnresolved 物件的操作將會失敗,並拋出 IllegalArgumentException。出於相容性原因,允許向從未調用過此方法的 RoleUnresolvedList 添加非 RoleUnresolved 物件。

拋出:
IllegalArgumentException - 如果此 RoleUnresolvedList 套件含非 RoleUnresolved 元素。
從以下版本開始:
1.6

add

public void add(RoleUnresolved role)
         throws IllegalArgumentException
添加指定為列表中最後一個元素的 RoleUnresolved。

參數:
role - - 要添加的未解析角色。
拋出:
IllegalArgumentException - 如果未解析角色為 null。

add

public void add(int index,
                RoleUnresolved role)
         throws IllegalArgumentException,
                IndexOutOfBoundsException
在指定位置處插入指定為元素的未解析角色。將其索引大於或等於當前位置的元素上移。

參數:
index - - 在列表中要插入新 RoleUnresolved 物件的位置。
role - - 要插入的 RoleUnresolved 物件。
拋出:
IllegalArgumentException - 如果未解析角色為 null。
IndexOutOfBoundsException - 如果索引不在 (index < 0 || index > size()) 範圍內。

set

public void set(int index,
                RoleUnresolved role)
         throws IllegalArgumentException,
                IndexOutOfBoundsException
將指定位置處的元素設置為指定的未解析角色。丟棄該位置以前的元素。

參數:
index - - 指定的位置。
role - - 應該將未解析角色元素設置成的值。
拋出:
IllegalArgumentException - 如果未解析角色為 null。
IndexOutOfBoundsException - 如果索引不在 (index < 0 || index > size()) 範圍內。

addAll

public boolean addAll(RoleUnresolvedList roleList)
               throws IndexOutOfBoundsException
將指定 RoleUnresolvedList 中的所有元素追加到列表末尾,這些元素按指定 RoleUnresolvedList 的迭代器返回的順序排列。

參數:
roleList - 要插入到列表中的元素(可以為 null)。
返回:
如果此列表由於調用而更改,則返回 true。
拋出:
IndexOutOfBoundsException - 如果用列表外面的索引存取。

addAll

public boolean addAll(int index,
                      RoleUnresolvedList roleList)
               throws IllegalArgumentException,
                      IndexOutOfBoundsException
從指定位置開始,將指定 RoleUnresolvedList 中的所有元素插入此列表,這些元素按指定 RoleUnresolvedList 的迭代器返回的順序排列。

參數:
index - 插入指定 RoleUnresolvedList 中第一個元素的位置。
roleList - 要插入該列表的元素。
返回:
如果此列表由於調用而更改,則返回 true。
拋出:
IllegalArgumentException - 如果角色為 null。
IndexOutOfBoundsException - 如果索引不在 (index < 0 || index > size()) 範圍內。

add

public boolean add(Object o)
從類別 ArrayList 複製的描述
將指定的元素添加到此列表的尾部。

指定者:
介面 Collection<Object> 中的 add
指定者:
介面 List<Object> 中的 add
覆寫:
類別 ArrayList<Object> 中的 add
參數:
o - 要添加到此列表中的元素
返回:
true(按照 Collection.add(E) 的指定)

add

public void add(int index,
                Object element)
從類別 ArrayList 複製的描述
將指定的元素插入此列表中的指定位置。向右移動當前位於該位置的元素(如果有)以及所有後續元素(將其索引加 1)。

指定者:
介面 List<Object> 中的 add
覆寫:
類別 ArrayList<Object> 中的 add
參數:
index - 指定元素所插入位置的索引
element - 要插入的元素

addAll

public boolean addAll(Collection<?> c)
從類別 ArrayList 複製的描述
按照指定 collection 的迭代器所返回的元素順序,將該 collection 中的所有元素添加到此列表的尾部。如果正在進行此操作時修改指定的 collection ,那麼此操作的行為是不確定的。(這意味著如果指定的 collection 是此列表且此列表是非空(null)的,那麼此調用的行為是不確定的)。

指定者:
介面 Collection<Object> 中的 addAll
指定者:
介面 List<Object> 中的 addAll
覆寫:
類別 ArrayList<Object> 中的 addAll
參數:
c - 套件含要添加到此列表中的元素的 collection
返回:
如果此列表由於調用而發生更改,則返回 true
另請參見:
AbstractCollection.add(Object)

addAll

public boolean addAll(int index,
                      Collection<?> c)
從類別 ArrayList 複製的描述
從指定的位置開始,將指定 collection 中的所有元素插入到此列表中。向右移動當前位於該位置的元素(如果有)以及所有後續元素(增加其索引)。新元素將按照指定 collection 的迭代器所返回的元素順序出現在列表中。

指定者:
介面 List<Object> 中的 addAll
覆寫:
類別 ArrayList<Object> 中的 addAll
參數:
index - 插入指定 collection 中的首個元素的位置索引
c - 套件含要添加到此列表中元素的 collection
返回:
如果此列表由於調用而發生更改,則返回 true

set

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