|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--java.util.AbstractCollection
|
+--java.util.AbstractList
|
+--java.util.ArrayList
|
+--javax.management.relation.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.
| Fields inherited from class java.util.AbstractList |
modCount |
| Constructor Summary | |
RoleList()
|
|
RoleList(int initialCapacity)
Constructs an empty RoleList with the initial capacity specified. |
|
RoleList(java.util.List roleList)
Constructs a RoleList containing the elements of the ArrayList specified, in the order in which they are returned by the ArrayList's iterator. |
|
| Method Summary | |
void |
add(int theIndex,
Role theRole)
Inserts the role specified as an element at the position specified. |
void |
add(Role theRole)
Adds the Role specified as the last element of the list. |
boolean |
addAll(int theIndex,
RoleList _roleList)
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(RoleList _roleList)
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. |
java.lang.Object |
clone()
Cloning Returns a new RoleList, but no copy of the included elements. |
void |
set(int theIndex,
Role theRole)
Sets the element at the position specified to be the role specified. |
| Methods inherited from class java.util.ArrayList |
add, add, addAll, addAll, clear, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, removeRange, set, size, toArray, toArray, trimToSize |
| Methods inherited from class java.util.AbstractList |
equals, hashCode, iterator, listIterator, listIterator, subList |
| Methods inherited from class java.util.AbstractCollection |
containsAll, remove, removeAll, retainAll, toString |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
containsAll, equals, hashCode, iterator, listIterator, listIterator, remove, removeAll, retainAll, subList |
| Constructor Detail |
public RoleList()
public RoleList(int initialCapacity)
initialCapacity - initial capacity
public RoleList(java.util.List roleList)
throws java.lang.IllegalArgumentException
roleList - list of Role objectsjava.lang.IllegalArgumentException - if:
- null parameter
or
- an element in the ArrayList is not a Role
| Method Detail |
public void add(Role theRole)
throws java.lang.IllegalArgumentException
theRole - the role to be added.java.lang.IllegalArgumentException - if the role is null.
public void add(int theIndex,
Role theRole)
throws java.lang.IllegalArgumentException,
java.lang.IndexOutOfBoundsException
theIndex - The position in the list where the new Role
object is to be inserted.theRole - The Role object to be inserted.java.lang.IllegalArgumentException - if the role is null.java.lang.IndexOutOfBoundsException - if accessing with an index
outside of the list.
public void set(int theIndex,
Role theRole)
throws java.lang.IllegalArgumentException,
java.lang.IndexOutOfBoundsException
theIndex - The position specified.theRole - The value to which the role element should be set.java.lang.IllegalArgumentException - if the role is null.java.lang.IndexOutOfBoundsException - if accessing with an index
outside of the list.
public boolean addAll(RoleList _roleList)
throws java.lang.IndexOutOfBoundsException
_roleList - Elements to be inserted into the list (can be null)java.lang.IndexOutOfBoundsException - if accessing with an index
outside of the list.
public boolean addAll(int theIndex,
RoleList _roleList)
throws java.lang.IllegalArgumentException,
java.lang.IndexOutOfBoundsException
theIndex - Position at which to insert the first element from the
RoleList specified._roleList - Elements to be inserted into the list.java.lang.IllegalArgumentException - if the role is null.java.lang.IndexOutOfBoundsException - if accessing with an index
outside of the list.public java.lang.Object clone()
Returns a new RoleList, but no copy of the included elements.
clone in class java.util.ArrayList
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||