Example
Clear all items from a list.
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
ArrayList<String> cars = new ArrayList<String>();
cars.add("Volvo");
cars.add("BMW");
cars.add("Ford"); cars.add("Mazda");
cars.add("Toyota");
cars.removeAll(cars);
System.out.println(cars);
}
}
|
Definition and Usage
The removeAll() method deletes all items from a list that are present in a specified collection.
Syntax
public boolean removeAll(Collection items)
|
Parameter Values
|
Parameter
|
Description
|
|
item
|
Necessary: A collection containing items to remove from the list.
|
Technical Details
|
Returns:
|
True if the list has been modified; false otherwise.
|
|
Throws:
|
NullPointerException occurs if the collection is null.
|
More Examples
Example
Eliminate multiple items from a list.
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
ArrayList<String> cars = new ArrayList<String>();
cars.add("Volvo");
cars.add("BMW");
cars.add("Ford");
cars.add("Mazda");
cars.add("Toyota");
ArrayList<String> remove = new ArrayList<String>();
remove.add("Volvo");
remove.add("Ford");
remove.add("Mazda");
cars.removeAll(remove);
System.out.println(cars);
}
}
|