|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.AbstractCollection java.util.AbstractList java.util.ArrayList javax.management.AttributeList
A list of a MBean attributes.
An AttributeList can be used to get and set multiple MBean attributes in one invocation.
It is an array list that can only contain
Attribute
s
Note: AttributeLists must be externally synchronized.
Attribute
,
Serialized FormField Summary |
Fields inherited from class java.util.AbstractList |
modCount |
Constructor Summary | |
AttributeList()
Contruct a new empty attribute list. |
|
AttributeList(AttributeList list)
Contruct a new attribute from another attribute list. |
|
AttributeList(int initialCapacity)
Contruct a new empty attriute list with an initial capacity. |
Method Summary | |
void |
add(Attribute object)
Append an Attribute to the list. |
void |
add(int index,
Attribute object)
Insert a new Attribute into the list at the specified location. |
boolean |
addAll(AttributeList list)
Append the attributes the passed list to the end of this list. |
boolean |
addAll(int index,
AttributeList list)
Insert all the attributes in the passed list at the specified location in this list. |
void |
set(int index,
Attribute object)
Change the attribute at the specified location. |
Methods inherited from class java.util.ArrayList |
add, add, addAll, addAll, clear, clone, 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 AttributeList()
public AttributeList(int initialCapacity)
initialCapacity
- the initial capacity reserved.public AttributeList(AttributeList list)
list
- the attribute list to copy.Method Detail |
public void add(Attribute object)
object
- the attribute to append.public void add(int index, Attribute object)
index
- the location to insert the attribute.object
- the attribute to insert.public void set(int index, Attribute object)
index
- the location of he attribute to change.object
- the new attribute.public boolean addAll(AttributeList list)
list
- the attributes appended.
public boolean addAll(int index, AttributeList list)
index
- the location where the attributes are inserted.list
- the attributes inserted.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |