Method Summary |
|
public Account | get(int pos) Returns the user at the given position. |
public Account[] | getUsers() Returns all users in the list. |
public void | remove(Account user) Removes a user from the list. |
public void | remove(Account user) Removes users from the list. |
public void | remove(long userId) Removes groups identified by the unique id from the list. |
public void | remove(long userId) Removes a user identified by its unique id from the list. |
public int | size() Returns the amount of users in the list. |
public long[] | toIdArray() Returns a array holding the id's of all users the list. |
public String[] | toNameArray() Returns a array holding the names of all users in the list. |
public String | toNameString() Returns a comma seperated list of the user names. |
public String | toString() Returns a string representation of the users. |