Java util ArrayList Class - ArrayList Class in Java

You can remove the element at a given index in an ArrayList using ArrayList.remove(int index) method. How to remove an element from an ArrayList ? You can remove matched element from an ArrayList using ArrayList.remove(Object o) method. How to remove all the elements from an ArrayList ? You can remove all the elements from an ArrayList using ... ................
................