Package java.util
Class ArrayList

Public Method indexOf

int indexOf(Object elem)

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Searchs for the first occurence of the given argumment, testing for equality using the equals method.

Example

   Logger.log("The index of the element: " + aList.indexOf(element));

The example above adds a string element to the ArrayList.