LinkedList.lastIndexOf

Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element. More formally, returns the highest 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 last occurrence of the specified element in this list, or -1 if this list does not contain the element

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

Meta