boolean |
ArrayList.addAll(int index,
Collection<? extends E> c) |
Inserts all of the elements in the specified collection into this
list, starting at the specified position.
|
boolean |
ArrayList.addAll(Collection<? extends E> 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.
|
boolean |
Collection.addAll(Collection<? extends E> collection) |
Attempts to add all of the objects contained in Collection
to the contents of this Collection (optional).
|
boolean |
List.addAll(int location,
Collection<? extends E> collection) |
Inserts the objects in the specified collection at the specified location
in this List .
|
boolean |
List.addAll(Collection<? extends E> collection) |
Adds the objects in the specified collection to the end of this List .
|
boolean |
ArrayList.containsAll(Collection<?> arg0) |
|
boolean |
Collection.containsAll(Collection<?> collection) |
Tests whether this Collection contains all objects contained in the
specified Collection .
|
boolean |
List.containsAll(Collection<?> collection) |
Tests whether this List contains all objects contained in the
specified collection.
|
boolean |
ArrayList.removeAll(Collection<?> c) |
Removes from this list all of its elements that are contained in the
specified collection.
|
boolean |
Collection.removeAll(Collection<?> collection) |
Removes all occurrences in this Collection of each object in the
specified Collection (optional).
|
boolean |
List.removeAll(Collection<?> collection) |
Removes all occurrences in this List of each object in the specified
collection.
|
boolean |
ArrayList.retainAll(Collection<?> c) |
Retains only the elements in this list that are contained in the
specified collection.
|
boolean |
Collection.retainAll(Collection<?> collection) |
Removes all objects from this Collection that are not also found in the
Collection passed (optional).
|
boolean |
List.retainAll(Collection<?> collection) |
Removes all objects from this List that are not contained in the
specified collection.
|