|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object![]()
![]()
![]()
java.util.AbstractCollection
![]()
![]()
<E>
java.util.AbstractList
![]()
![]()
<E>
java.util.ArrayList
![]()
![]()
![]()
javax.management.relation.RoleList
, Cloneable
, Iterable
, Collection
, List
, RandomAccess

public class RoleList

A RoleList represents a list of roles (Role objects). It is used as parameter when creating a relation, and when trying to set several roles in a relation (via 'setRoles()' method). It is returned as part of a RoleResult, to provide roles successfully retrieved.
| Field Summary |
|---|
Fields inherited from class java.util.AbstractList ![]() |
|---|
modCount |
| Constructor Summary | |
|---|---|
RoleList
Constructs an empty RoleList. |
|
RoleList
Constructs an empty RoleList with the initial capacity specified. |
|
RoleList
Constructs a RoleList containing the elements of the List specified, in the order in which they are returned by the List's iterator. |
|
| Method Summary | |
|---|---|
void |
add
Inserts the role specified as an element at the position specified. |
void |
add
Adds the Role specified as the last element of the list. |
boolean |
addAll
Inserts all of the elements in the RoleList specified into this list, starting at the specified position, in the order in which they are returned by the Iterator of the RoleList specified. |
boolean |
addAll
Appends all the elements in the RoleList specified to the end of the list, in the order in which they are returned by the Iterator of the RoleList specified. |
void |
set
Sets the element at the position specified to be the role specified. |
Methods inherited from class java.util.ArrayList ![]() |
|---|
add |
Methods inherited from class java.util.AbstractList ![]() |
|---|
equals |
Methods inherited from class java.util.AbstractCollection ![]() |
|---|
containsAll |
Methods inherited from class java.lang.Object ![]() |
|---|
finalize |
Methods inherited from interface java.util.List ![]() |
|---|
containsAll |
| Constructor Detail |
|---|

public RoleList()

public RoleList(int theInitialCapacity)
theInitialCapacity - initial capacity

public RoleList(List![]()
![]()
theList) throws IllegalArgumentException
![]()
![]()
theList - list of Role objects
IllegalArgumentException

- if:
- null parameter
or
- an element in the List is not a Role
| Method Detail |
|---|

public void add(Role![]()
![]()
theRole) throws IllegalArgumentException
![]()
![]()
theRole - the role to be added.
IllegalArgumentException

- if the role is null.

public void add(int theIndex,
Role
theRole)
throws IllegalArgumentException
,
IndexOutOfBoundsException

theIndex - The position in the list where the new Role
object is to be inserted.theRole - The Role object to be inserted.
IllegalArgumentException

- if the role is null.
IndexOutOfBoundsException

- if accessing with an index
outside of the list.

public void set(int theIndex,
Role
theRole)
throws IllegalArgumentException
,
IndexOutOfBoundsException

theIndex - The position specified.theRole - The value to which the role element should be set.
IllegalArgumentException

- if the role is null.
IndexOutOfBoundsException

- if accessing with an index
outside of the list.

public boolean addAll(RoleList![]()
![]()
theRoleList) throws IndexOutOfBoundsException
![]()
![]()
theRoleList - Elements to be inserted into the list (can be null)
IndexOutOfBoundsException

- if accessing with an index
outside of the list.ArrayList.addAll(Collection)


public boolean addAll(int theIndex,
RoleList
theRoleList)
throws IllegalArgumentException
,
IndexOutOfBoundsException

theIndex - Position at which to insert the first element from the
RoleList specified.theRoleList - Elements to be inserted into the list.
IllegalArgumentException

- if the role is null.
IndexOutOfBoundsException

- if accessing with an index
outside of the list.ArrayList.addAll(int, Collection)

|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||