|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.util.AbstractCollection<E> java.util.AbstractList<E> java.util.ArrayList javax.management.relation.RoleList
public class RoleList
RoleList 表示角色(Role 对象)的列表。它在创建关系和试图在关系中设置几个角色(通过 'setRoles()'方法)时用作参数。它将作为 RoleResult 的一部分返回,以提供成功检索的角色。
字段摘要 |
---|
从类 java.util.AbstractList 继承的字段 |
---|
modCount |
构造方法摘要 | |
---|---|
RoleList()
构造一个空的 RoleList。 |
|
RoleList(int theInitialCapacity)
构造一个具有指定初始容量的空 RoleList。 |
|
RoleList(List theList)
构造一个包含指定列表的元素的 RoleList,这些元素按列表的迭代器返回的顺序排列。 |
方法摘要 | |
---|---|
void |
add(int theIndex,
Role theRole)
插入指定为指定位置处的元素的角色。 |
void |
add(Role theRole)
添加指定为列表中最后一个元素的 Role。 |
boolean |
addAll(int theIndex,
RoleList theRoleList)
从指定位置开始,将指定 RoleList 中的所有元素插入此列表,这些元素按指定 RoleList 的迭代器返回的顺序排列。 |
boolean |
addAll(RoleList theRoleList)
将指定 RoleList 中的所有元素追加到列表末尾,这些元素按指定 RoleList 的迭代器返回的顺序排列。 |
void |
set(int theIndex,
Role theRole)
将指定位置处的元素设置为指定角色。 |
从类 java.util.ArrayList 继承的方法 |
---|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, set, 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 RoleList()
public RoleList(int theInitialCapacity)
theInitialCapacity
- 初始容量public RoleList(List theList) throws IllegalArgumentException
theList
- Role 对象的列表
IllegalArgumentException
- 如果:
- 为 null 参数
或者
- 列表中的元素不是 Role
方法详细信息 |
---|
public void add(Role theRole) throws IllegalArgumentException
theRole
- 要添加的角色。
IllegalArgumentException
- 如果角色为 null。public void add(int theIndex, Role theRole) throws IllegalArgumentException, IndexOutOfBoundsException
theIndex
- 在列表中要插入新 Role 对象的位置。theRole
- 要插入的 Role 对象。
IllegalArgumentException
- 如果角色为 null。
IndexOutOfBoundsException
- 如果用列表之外的索引访问。public void set(int theIndex, Role theRole) throws IllegalArgumentException, IndexOutOfBoundsException
theIndex
- 指定的位置。theRole
- 角色元素应该设置为的值。
IllegalArgumentException
- 如果角色为 null。
IndexOutOfBoundsException
- 如果用列表之外的索引访问。public boolean addAll(RoleList theRoleList) throws IndexOutOfBoundsException
theRoleList
- 要插入列表的元素(可以为 null)
IndexOutOfBoundsException
- 如果用列表之外的索引访问。ArrayList.addAll(Collection)
public boolean addAll(int theIndex, RoleList theRoleList) throws IllegalArgumentException, IndexOutOfBoundsException
index
- 在其处插入指定 RoleList 中第一个元素的位置。theRoleList
- 要插入该列表的元素。
IllegalArgumentException
- 如果角色为 null。
IndexOutOfBoundsException
- 如果用列表之外的索引访问。ArrayList.addAll(int, Collection)
|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2004 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。