int lastIndexOf(Object elem)
Overrides:
int lastIndexOf(Object e, int index)
Throws:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Implements interface method List.hashCode.
lastIndexOf(Object elem) method:
Returns the index of the last occurrence of the specified object in this vector.
lastIndexOf(Object e, int index) method:
Searches backwards for the specified object, starting from the specified index, and returns the index of the last occurrence of the specified object in this vector at position less than or equal to index in the vector, that is, the largest value k such that elem.equals(elementData[k]) && (k ≤ index) is true; -1 if the object is not found. (Returns -1 if index is negative.)