Package java.util
Interface List
abstract boolean addAll(Collection c)
abstract boolean addAll(int index, Collection c)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
addAll(Collection c) method:
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 (optional operation).
Note
addAll(int index, Collection c) method:
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
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 this list in the order that they are returned by the specified collection's iterator.
Note