|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object java.util.AbstractCollection<E> java.util.AbstractList<E> java.util.ArrayList javax.management.relation.RoleList
public class RoleList
RoleList は、ロール (Role オブジェクト) のリストを表します。関係を作成するときと、関係に含まれる複数のロールを setRoles() メソッドによって設定しようとするときにパラメータとして使用されます。RoleResult の一部として返され、取得に成功したロールを提供します。
フィールドの概要 |
---|
クラス java.util.AbstractList から継承されたフィールド |
---|
modCount |
コンストラクタの概要 | |
---|---|
RoleList()
空の RoleList を作成します。 |
|
RoleList(int theInitialCapacity)
指定された初期容量で空の RoleList を作成します。 |
|
RoleList(List theList)
指定された List の要素を含む RoleList を作成します。 |
メソッドの概要 | |
---|---|
void |
add(int theIndex,
Role theRole)
要素として指定されたロールを指定の位置に挿入します。 |
void |
add(Role theRole)
リストの最後の要素として、指定された Role を追加します。 |
boolean |
addAll(int theIndex,
RoleList theRoleList)
指定された RoleList 内のすべての要素を、指定された RoleList の反復子によって返される順番で、指定の位置に挿入します。 |
boolean |
addAll(RoleList theRoleList)
指定された RoleList 内のすべての要素を、指定された RoleList の反復子によって返される順番で、リストの末尾に付加します。 |
void |
set(int theIndex,
Role theRole)
指定された位置の要素に、指定されたロールを設定します。 |
クラス java.util.ArrayList から継承されたメソッド |
---|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, set, size, toArray, toArray, trimToSize |
クラス java.util.AbstractList から継承されたメソッド |
---|
equals, hashCode, iterator, listIterator, listIterator, subList |
クラス java.util.AbstractCollection から継承されたメソッド |
---|
containsAll, removeAll, retainAll, toString |
クラス java.lang.Object から継承されたメソッド |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
インタフェース java.util.List から継承されたメソッド |
---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
コンストラクタの詳細 |
---|
public RoleList()
public RoleList(int theInitialCapacity)
theInitialCapacity
- 初期容量public RoleList(List theList) throws IllegalArgumentException
theList
- Role オブジェクトのリスト
IllegalArgumentException
- 次の条件が成立する場合:- パラメータが null の場合
または
- List 内に Role でない要素が含まれる場合
メソッドの詳細 |
---|
public void add(Role theRole) throws IllegalArgumentException
theRole
- 追加されるロール
IllegalArgumentException
- ロールが null の場合public void add(int theIndex, Role theRole) throws IllegalArgumentException, IndexOutOfBoundsException
theIndex
- リスト内の新しい Role オブジェクトの挿入位置theRole
- 挿入される Role オブジェクト
IllegalArgumentException
- ロールが null の場合
IndexOutOfBoundsException
- リスト外部のインデックスでアクセスした場合public void set(int theIndex, Role theRole) throws IllegalArgumentException, IndexOutOfBoundsException
theIndex
- 指定された位置theRole
- ロール要素の設定値
IllegalArgumentException
- ロールが null の場合
IndexOutOfBoundsException
- リスト外部のインデックスでアクセスした場合public boolean addAll(RoleList theRoleList) throws IndexOutOfBoundsException
theRoleList
- リストに挿入される要素 (null も可)
IndexOutOfBoundsException
- リスト外部のインデックスでアクセスした場合ArrayList.addAll(Collection)
public boolean addAll(int theIndex, RoleList theRoleList) throws IllegalArgumentException, IndexOutOfBoundsException
theIndex
- 指定された RoleList から最初の要素を挿入する位置theRoleList
- リストに挿入される要素
IllegalArgumentException
- ロールが null の場合
IndexOutOfBoundsException
- リスト外部のインデックスでアクセスした場合ArrayList.addAll(int, Collection)
|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。