Methods Summary |
---|
public void | add(javax.management.relation.RoleUnresolved theRoleUnres)Adds the RoleUnresolved specified as the last element of the list.
if (theRoleUnres == null) {
String excMsg = "Invalid parameter";
throw new IllegalArgumentException(excMsg);
}
super.add(theRoleUnres);
return;
|
public void | add(int index, javax.management.relation.RoleUnresolved theRoleUnres)Inserts the unresolved role specified as an element at the position
specified.
Elements with an index greater than or equal to the current position are
shifted up.
if (theRoleUnres == null) {
String excMsg = "Invalid parameter";
throw new IllegalArgumentException(excMsg);
}
super.add(index, theRoleUnres);
return;
|
public boolean | addAll(javax.management.relation.RoleUnresolvedList theRoleUnresolvedList)Appends all the elements in the RoleUnresolvedList specified to the end
of the list, in the order in which they are returned by the Iterator of
the RoleUnresolvedList specified.
if (theRoleUnresolvedList == null) {
return true;
}
return (super.addAll(theRoleUnresolvedList));
|
public boolean | addAll(int index, javax.management.relation.RoleUnresolvedList theRoleUnresolvedList)Inserts all of the elements in the RoleUnresolvedList specified into
this list, starting at the specified position, in the order in which
they are returned by the Iterator of the RoleUnresolvedList specified.
if (theRoleUnresolvedList == null) {
String excMsg = "Invalid parameter";
throw new IllegalArgumentException(excMsg);
}
return (super.addAll(index, theRoleUnresolvedList));
|
public void | set(int index, javax.management.relation.RoleUnresolved theRoleUnres)Sets the element at the position specified to be the unresolved role
specified.
The previous element at that position is discarded.
if (theRoleUnres == null) {
String excMsg = "Invalid parameter";
throw new IllegalArgumentException(excMsg);
}
super.set(index, theRoleUnres);
return;
|