Package java.util
Class ArrayList
Description:
Removes all of the elements from this list. The list will be empty after this call returns.
Example
ArrayList aList = new ArrayList(10);
aList.add("This is the first element!");
aList.clear();
The clear() method removes the added element from the list.