Java javax.management AttributeList fields, constructors, methods, implement or subclass

Example usage for Java javax.management AttributeList fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.management AttributeList.

The text is from its open source code.

Constructor

AttributeList()
Constructs an empty AttributeList.
AttributeList(int initialCapacity)
Constructs an empty AttributeList with the initial capacity specified.
AttributeList(AttributeList list)
Constructs an AttributeList containing the elements of the AttributeList specified, in the order in which they are returned by the AttributeList's iterator.
AttributeList(List list)
Constructs an AttributeList containing the elements of the List specified, in the order in which they are returned by the List 's iterator.

Method

voidadd(Attribute object)
Adds the Attribute specified as the last element of the list.
booleanadd(Object element)
booleanaddAll(AttributeList list)
Appends all the elements in the AttributeList specified to the end of the list, in the order in which they are returned by the Iterator of the AttributeList specified.
booleanaddAll(Collection c)
ListasList()
Return a view of this list as a List .
Objectclone()
Creates and returns a copy of this object.
StringtoString()
Returns a string representation of the object.