public abstract class AbstractList<E> implements Iterable<E> {

public int indexOf( E elem ) {
/*This instance method is supposed to find the object E in this list and return its left...