LinkedList.indexOf

Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element. More formally, returns the lowest index {@code i} such that <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>, or -1 if there is no such index.

@param o element to search for @return the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element

class LinkedList(E)
override
int
indexOf
(
E o
)

Meta