Module  java.management
软件包  javax.management

Class AttributeList

    • 构造方法详细信息

      • AttributeList

        public AttributeList​()
        构造一个空的 AttributeList
      • AttributeList

        public AttributeList​(int initialCapacity)
        构造一个空的 AttributeList具有指定的初始容量。
        参数
        initialCapacity -初始容量的的 AttributeList ,如通过指定 ArrayList(int)
      • AttributeList

        public AttributeList​(AttributeList list)
        构造一个AttributeList其中包含AttributeList的元素,按AttributeList的迭代器返回的AttributeList AttributeList实例的初始容量为规定的AttributeList大小的110%。
        参数
        list -所述 AttributeList定义新的初始内容 AttributeList
        另请参见:
        ArrayList(java.util.Collection)
      • AttributeList

        public AttributeList​(List<Attribute> list)
        构造一个 AttributeList其中包含 AttributeList的元素,按 List的迭代器返回的 List
        参数
        list -所述 List定义新的初始内容 AttributeList
        异常
        IllegalArgumentException - 如果 list参数为 null或者 list参数包含任何非Attribute对象。
        从以下版本开始:
        1.6
        另请参见:
        ArrayList(java.util.Collection)
    • 方法详细信息

      • asList

        public List<Attribute> asList​()
        将此列表的视图作为List<Attribute> 返回值的变化反映在原来的AttributeList的更改中,反之亦然。
        结果
        一个List<Attribute>的内容反映了这个AttributeList的内容。

        如果在给定的AttributeList实例中调用了此方法,则后续尝试将对象添加到不是Attribute实例将失败,并显示一个IllegalArgumentException 出于兼容性考虑,一个AttributeList上这种方法从来没有被称为确实允许比其他对象Attribute进行增补。

        异常
        IllegalArgumentException - 如果这个 AttributeList包含一个不是 Attribute的元素。
        从以下版本开始:
        1.6
      • add

        public void add​(Attribute object)
        添加指定为列表的最后一个元素的 Attribute
        参数
        object - 要添加的属性。
      • add

        public void add​(int index,
                        Attribute object)
        在指定的位置插入指定为元素的属性。 索引大于或等于当前位置的元素向上移动。 如果索引超出范围(index <0 || index> size()),则应引发RuntimeOperationsException,并引发抛出java.lang.IndexOutOfBoundsException异常。
        参数
        object - 要插入的 Attribute对象。
        index - 要插入新的 Attribute对象的列表中的位置。
      • set

        public void set​(int index,
                        Attribute object)
        将元素设置为指定的属性。 该位置的上一个元素被丢弃。 如果索引超出范围(index <0 || index> size()),则应引发RuntimeOperationsException,并引发抛出java.lang.IndexOutOfBoundsException异常。
        参数
        object - 应该设置属性元素的值。
        index - 指定的位置。
      • addAll

        public boolean addAll​(AttributeList list)
        AttributeList指定的所有元素追加到列表的末尾, AttributeList指定的 AttributeList的迭代器返回的 AttributeList
        参数
        list - 要插入到列表中的元素。
        结果
        如果此列表因呼叫而更改,则为true。
        另请参见:
        ArrayList.addAll(java.util.Collection)
      • addAll

        public boolean addAll​(int index,
                              AttributeList list)
        AttributeList指定的所有元素插入到此列表中,从指定的位置开始,按照指定的AttributeList的迭代器返回它们的顺序。 如果索引超出范围(index <0 || index> size()),则应引发RuntimeOperationsException,并引发抛出java.lang.IndexOutOfBoundsException异常。
        参数
        list - 要插入到列表中的元素。
        index - 从指定的 AttributeList插入第一个元素的 AttributeList
        结果
        如果此列表因呼叫而更改,则为true。
        另请参见:
        ArrayList.addAll(int, java.util.Collection)
      • add

        public void add​(int index,
                        Object element)
        在此列表中的指定位置插入指定的元素。 将当前位于该位置的元素(如果有)和任何后续元素(向其索引添加一个)移动。
        Specified by:
        add在接口 List<Object>
        重写:
        addArrayList<Object>
        参数
        index - 要在其中插入指定元素的索引
        element - 要插入的元素
        异常
        IllegalArgumentException - 如果这 AttributeListtype-safeelement不是一个 Attribute
      • addAll

        public boolean addAll​(Collection<?> c)
        按指定集合的Iterator返回的顺序将指定集合中的所有元素追加到此列表的末尾。 如果在操作进行中修改了指定的集合,则此操作的行为是未定义的。 (这意味着如果指定的集合是此列表,则此调用的行为是未定义的,并且此列表是非空的。)
        Specified by:
        addAll在接口 Collection<Object>
        Specified by:
        addAll在接口 List<Object>
        重写:
        addAllArrayList<Object>
        参数
        c - 包含要添加到此列表的元素的集合
        结果
        true如果此列表因呼叫而更改
        异常
        IllegalArgumentException - 如果这个 AttributeListtype-safe,c包含一个不是 Attribute的元素。
        另请参见:
        AbstractCollection.add(Object)
      • addAll

        public boolean addAll​(int index,
                              Collection<?> c)
        将指定集合中的所有元素插入到此列表中,从指定的位置开始。 将当前位于该位置(如果有的话)的元素和随后的任何元素移动到右边(增加其索引)。 新元素将按照指定集合的迭代器返回的顺序显示在列表中。
        Specified by:
        addAll在接口 List<Object>
        重写:
        addAllArrayList<Object>
        参数
        index - 从指定集合插入第一个元素的索引
        c - 包含要添加到此列表的元素的集合
        结果
        true如果此列表因呼叫而更改
        异常
        IllegalArgumentException - 如果这个 AttributeListtype-safec包含一个不是 Attribute的元素。
      • set

        public Object set​(int index,
                          Object element)
        用指定的元素替换此列表中指定位置的元素。
        Specified by:
        set在接口 List<Object>
        重写:
        setArrayList<Object>
        参数
        index - 要替换的元素的索引
        element - 要存储在指定位置的元素
        结果
        该元素以前在指定的位置
        异常
        IllegalArgumentException - 如果这 AttributeListtype-safeelement不是一个 Attribute