- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- java.util.ArrayList<Object>
-
- javax.management.relation.RoleList
-
- All Implemented Interfaces:
-
Serializable
,Cloneable
,Iterable<Object>
,Collection<Object>
,List<Object>
,RandomAccess
public class RoleList extends ArrayList<Object>
RoleList表示角色列表(Role对象)。 在创建关系时用作参数,并且尝试在关系中设置多个角色时(通过'setRoles()'方法)。 它作为RoleResult的一部分返回,以提供成功检索的角色。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.AbstractList
modCount
-
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
add(int index, Object element)
在此列表中的指定位置插入指定的元素。void
add(int index, Role role)
在指定的位置插入指定为元素的角色。boolean
add(Object o)
将指定的元素追加到此列表的末尾。void
add(Role role)
将指定的角色添加为列表的最后一个元素。boolean
addAll(int index, Collection<?> c)
将指定集合中的所有元素插入到此列表中,从指定的位置开始。boolean
addAll(int index, RoleList roleList)
从指定的位置开始,按照指定的RoleList的迭代器返回的顺序,将指定的RoleList中的所有元素插入到此列表中。boolean
addAll(Collection<?> c)
按指定集合的Iterator返回的顺序将指定集合中的所有元素追加到此列表的末尾。boolean
addAll(RoleList roleList)
将所指定的RoleList中的所有元素按指定的RoleList的迭代器返回的顺序附加到列表的末尾。List<Role>
asList()
将此列表的视图作为List<Role>
。Object
set(int index, Object element)
用指定的元素替换此列表中指定位置的元素。void
set(int index, Role role)
将元素设置为指定的角色。-
Methods inherited from class java.util.AbstractCollection
containsAll, toString
-
Methods inherited from class java.util.AbstractList
equals, hashCode
-
Methods inherited from class java.util.ArrayList
clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, size, sort, spliterator, subList, toArray, toArray, trimToSize
-
Methods inherited from interface java.util.Collection
parallelStream, stream
-
-
-
-
构造方法详细信息
-
RoleList
public RoleList()
构造一个空的RoleList。
-
RoleList
public RoleList(int initialCapacity)
构造一个空的RoleList,并指定初始容量。- 参数
-
initialCapacity
- 初始容量
-
RoleList
public RoleList(List<Role> list) throws IllegalArgumentException
构造一个包含RoleList
元素的List
,按List
的迭代器返回它们的顺序。RoleList
实例的初始容量为指定的List
大小的110%。- 参数
-
list
-所述List
定义新的初始内容RoleList
。 - 异常
-
IllegalArgumentException
- 如果list
参数是null
或者如果list
参数包含任何非角色对象。 - 另请参见:
-
ArrayList(java.util.Collection)
-
-
方法详细信息
-
asList
public List<Role> asList()
将此列表的视图作为List<Role>
。 返回值的更改反映在原来的RoleList
的更改中,反之亦然。- 结果
-
一个
List<Role>
的内容反映了这个RoleList
的内容。如果在给定的
RoleList
实例中调用了此方法,则后续尝试将对象添加到不是Role
实例将失败,并显示一个IllegalArgumentException
。 出于兼容性考虑,一个RoleList
上这种方法从来没有被称为确实允许比其他对象Role
进行增补。 - 异常
-
IllegalArgumentException
- 如果此RoleList
包含不是Role
的元素。 - 从以下版本开始:
- 1.6
-
add
public void add(Role role) throws IllegalArgumentException
将指定的角色添加为列表的最后一个元素。- 参数
-
role
- 要添加的角色。 - 异常
-
IllegalArgumentException
- 如果角色为null。
-
add
public void add(int index, Role role) throws IllegalArgumentException, IndexOutOfBoundsException
在指定的位置插入指定为元素的角色。 索引大于或等于当前位置的元素向上移动。- 参数
-
index
- 要插入新Role对象的列表中的位置。 -
role
- 要插入的角色对象。 - 异常
-
IllegalArgumentException
- 如果角色为null。 -
IndexOutOfBoundsException
- 如果使用列表外的索引进行访问。
-
set
public void set(int index, Role role) throws IllegalArgumentException, IndexOutOfBoundsException
将元素设置为指定的角色。 该位置的上一个元素被丢弃。- 参数
-
index
- 指定的位置。 -
role
- 应该设置角色元素的值。 - 异常
-
IllegalArgumentException
- 如果角色为null。 -
IndexOutOfBoundsException
- 如果使用列表外的索引进行访问。
-
addAll
public boolean addAll(RoleList roleList) throws IndexOutOfBoundsException
将所指定的RoleList中的所有元素按指定的RoleList的迭代器返回的顺序附加到列表的末尾。- 参数
-
roleList
- 要插入到列表中的元素(可以为null) - 结果
- 如果此列表因呼叫而更改,则为true。
- 异常
-
IndexOutOfBoundsException
- 如果使用列表外的索引进行访问。 - 另请参见:
-
ArrayList.addAll(Collection)
-
addAll
public boolean addAll(int index, RoleList roleList) throws IllegalArgumentException, IndexOutOfBoundsException
从指定的位置开始,按照指定的RoleList的迭代器返回的顺序,将指定的RoleList中的所有元素插入到此列表中。- 参数
-
index
- 从指定的RoleList插入第一个元素的位置。 -
roleList
- 要插入到列表中的元素。 - 结果
- 如果此列表因呼叫而更改,则为true。
- 异常
-
IllegalArgumentException
- 如果角色为null。 -
IndexOutOfBoundsException
- 如果使用列表外的索引进行访问。 - 另请参见:
-
ArrayList.addAll(int, Collection)
-
add
public boolean add(Object o)
描述从类别复制ArrayList
将指定的元素追加到此列表的末尾。- Specified by:
-
add
在接口Collection<Object>
- Specified by:
-
add
在接口List<Object>
- 重写:
-
add
在ArrayList<Object>
- 参数
-
o
- 要附加到此列表的元素 - 结果
-
true
(由Collection.add(E)
指定)
-
add
public void add(int index, Object element)
描述从类别复制ArrayList
在此列表中的指定位置插入指定的元素。 将当前位于该位置的元素(如果有)和任何后续元素(向其索引添加一个)移动。
-
addAll
public boolean addAll(Collection<?> c)
描述从类复制:ArrayList
按指定集合的Iterator返回的顺序将指定集合中的所有元素追加到此列表的末尾。 如果在操作进行中修改了指定的集合,则此操作的行为是未定义的。 (这意味着如果指定的集合是此列表,则此调用的行为是未定义的,并且此列表是非空的。)- Specified by:
-
addAll
在接口Collection<Object>
- Specified by:
-
addAll
在接口List<Object>
- 重写:
-
addAll
在ArrayList<Object>
- 参数
-
c
- 包含要添加到此列表的元素的集合 - 结果
-
true
如果此列表因呼叫而更改 - 另请参见:
-
AbstractCollection.add(Object)
-
addAll
public boolean addAll(int index, Collection<?> c)
描述从类复制:ArrayList
将指定集合中的所有元素插入到此列表中,从指定的位置开始。 将当前位于该位置(如果有的话)的元素和随后的任何元素移动到右边(增加其索引)。 新元素将按照指定集合的迭代器返回的顺序显示在列表中。
-
-