Class AttributeList
- All Implemented Interfaces:
- Serializable, Cloneable, Iterable<Object>, Collection<Object>, List<Object>, RandomAccess, SequencedCollection<Object>
Represents a list of values for attributes of an MBean.  See the
getAttributes and
setAttributes methods of
MBeanServer and MBeanServerConnection.
For compatibility reasons, it is possible, though
highly discouraged, to add objects to an AttributeList that are
not instances of Attribute.  However, an AttributeList
can be made type-safe, which means that an attempt to add
an object that is not an Attribute will produce an 
IllegalArgumentException.  An AttributeList becomes type-safe
when the method asList() is called on it.
- Since:
- 1.5
- See Also:
- 
Field SummaryFields declared in class AbstractListmodCount
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs an emptyAttributeList.AttributeList(int initialCapacity) Constructs an emptyAttributeListwith the initial capacity specified.AttributeList(List<Attribute> list) Constructs anAttributeListcontaining the elements of theListspecified, in the order in which they are returned by theList's iterator.AttributeList(AttributeList list) Constructs anAttributeListcontaining the elements of theAttributeListspecified, in the order in which they are returned by theAttributeList's iterator.
- 
Method SummaryModifier and TypeMethodDescriptionvoidInserts the specified element at the specified position in this list.voidInserts the attribute specified as an element at the position specified.booleanAppends the specified element to the end of this list.voidAdds theAttributespecified as the last element of the list.booleanaddAll(int index, Collection<?> c) Inserts all of the elements in the specified collection into this list, starting at the specified position.booleanaddAll(int index, AttributeList list) Inserts all of the elements in theAttributeListspecified into this list, starting at the specified position, in the order in which they are returned by the Iterator of theAttributeListspecified.booleanaddAll(Collection<?> c) Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's Iterator.booleanaddAll(AttributeList list) Appends all the elements in theAttributeListspecified to the end of the list, in the order in which they are returned by the Iterator of theAttributeListspecified.asList()Return a view of this list as aList<Attribute>.Replaces the element at the specified position in this list with the specified element.voidSets the element at the position specified to be the attribute specified.Methods declared in class ArrayListaddFirst, addLast, clear, clone, contains, ensureCapacity, equals, forEach, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeIf, removeLast, removeRange, retainAll, size, spliterator, subList, toArray, toArray, trimToSizeMethods declared in class AbstractListequals, hashCodeMethods declared in class AbstractCollectioncontainsAll, toStringMethods declared in interface CollectionparallelStream, stream, toArrayMethods declared in interface ListcontainsAll, replaceAll, reversed, sort
- 
Constructor Details- 
AttributeListpublic AttributeList()Constructs an emptyAttributeList.
- 
AttributeListpublic AttributeList(int initialCapacity) Constructs an emptyAttributeListwith the initial capacity specified.- Parameters:
- initialCapacity- the initial capacity of the- AttributeList, as specified by- ArrayList(int).
 
- 
AttributeListConstructs anAttributeListcontaining the elements of theAttributeListspecified, in the order in which they are returned by theAttributeList's iterator. TheAttributeListinstance has an initial capacity of 110% of the size of theAttributeListspecified.- Parameters:
- list- the- AttributeListthat defines the initial contents of the new- AttributeList.
- See Also:
 
- 
AttributeListConstructs anAttributeListcontaining the elements of theListspecified, in the order in which they are returned by theList's iterator.- Parameters:
- list- the- Listthat defines the initial contents of the new- AttributeList.
- Throws:
- IllegalArgumentException- if the- listparameter is- nullor if the- listparameter contains any non-Attribute objects.
- Since:
- 1.6
- See Also:
 
 
- 
- 
Method Details- 
asListReturn a view of this list as aList<Attribute>. Changes to the returned value are reflected by changes to the originalAttributeListand vice versa.- Returns:
- a List<Attribute>whose contents reflect the contents of thisAttributeList.If this method has ever been called on a given AttributeListinstance, a subsequent attempt to add an object to that instance which is not anAttributewill fail with anIllegalArgumentException. For compatibility reasons, anAttributeListon which this method has never been called does allow objects other thanAttributes to be added.
- Throws:
- IllegalArgumentException- if this- AttributeListcontains an element that is not an- Attribute.
- Since:
- 1.6
 
- 
addAdds theAttributespecified as the last element of the list.- Parameters:
- object- The attribute to be added.
 
- 
addInserts the attribute specified as an element at the position specified. Elements with an index greater than or equal to the current position are shifted up. If the index is out of range (index < 0 || index > size()) a RuntimeOperationsException should be raised, wrapping the java.lang.IndexOutOfBoundsException thrown.- Parameters:
- index- The position in the list where the new- Attributeobject is to be inserted.
- object- The- Attributeobject to be inserted.
 
- 
setSets the element at the position specified to be the attribute specified. The previous element at that position is discarded. If the index is out of range (index < 0 || index > size()) a RuntimeOperationsException should be raised, wrapping the java.lang.IndexOutOfBoundsException thrown.- Parameters:
- index- The position specified.
- object- The value to which the attribute element should be set.
 
- 
addAllAppends all the elements in theAttributeListspecified to the end of the list, in the order in which they are returned by the Iterator of theAttributeListspecified.- Parameters:
- list- Elements to be inserted into the list.
- Returns:
- true if this list changed as a result of the call.
- See Also:
 
- 
addAllInserts all of the elements in theAttributeListspecified into this list, starting at the specified position, in the order in which they are returned by the Iterator of theAttributeListspecified. If the index is out of range (index < 0 || index > size()) a RuntimeOperationsException should be raised, wrapping the java.lang.IndexOutOfBoundsException thrown.- Parameters:
- index- Position at which to insert the first element from the- AttributeListspecified.
- list- Elements to be inserted into the list.
- Returns:
- true if this list changed as a result of the call.
- See Also:
 
- 
addAppends the specified element to the end of this list.- Specified by:
- addin interface- Collection<Object>
- Specified by:
- addin interface- List<Object>
- Overrides:
- addin class- ArrayList<Object>
- Parameters:
- element- element to be appended to this list
- Returns:
- true(as specified by- Collection.add(E))
- Throws:
- IllegalArgumentException- if this- AttributeListis type-safe and- elementis not an- Attribute.
 
- 
addInserts the specified element at the specified position in this list. Shifts the element currently at that position (if any) and any subsequent elements to the right (adds one to their indices).
- 
addAllAppends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's Iterator. The behavior of this operation is undefined if the specified collection is modified while the operation is in progress. (This implies that the behavior of this call is undefined if the specified collection is this list, and this list is nonempty.)- Specified by:
- addAllin interface- Collection<Object>
- Specified by:
- addAllin interface- List<Object>
- Overrides:
- addAllin class- ArrayList<Object>
- Parameters:
- c- collection containing elements to be added to this list
- Returns:
- trueif this list changed as a result of the call
- Throws:
- IllegalArgumentException- if this- AttributeListis type-safe and- ccontains an element that is not an- Attribute.
- See Also:
 
- 
addAllInserts all of the elements in the specified collection into this list, starting at the specified position. Shifts the element currently at that position (if any) and any subsequent elements to the right (increases their indices). The new elements will appear in the list in the order that they are returned by the specified collection's iterator.- Specified by:
- addAllin interface- List<Object>
- Overrides:
- addAllin class- ArrayList<Object>
- Parameters:
- index- index at which to insert the first element from the specified collection
- c- collection containing elements to be added to this list
- Returns:
- trueif this list changed as a result of the call
- Throws:
- IllegalArgumentException- if this- AttributeListis type-safe and- ccontains an element that is not an- Attribute.
 
- 
setReplaces the element at the specified position in this list with the specified element.- Specified by:
- setin interface- List<Object>
- Overrides:
- setin class- ArrayList<Object>
- Parameters:
- index- index of the element to replace
- element- element to be stored at the specified position
- Returns:
- the element previously at the specified position
- Throws:
- IllegalArgumentException- if this- AttributeListis type-safe and- elementis not an- Attribute.
 
 
-