Package java.util
Class ArrayList

Public Method remove

Object remove(int index)

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Removes the element at the specified position in this list. Shifts any subsequent elements to the left.

Example

   aList.remove(3);

The example above removes the specified element from the ArrayList.