Searches this List for the specified object and returns the index of the last occurrence. @param object the object to search for. @return the index of the last occurrence of the object, or -1 if the object was not found.
(Object object)
| 212 | * object was not found. |
| 213 | */ |
| 214 | public int lastIndexOf(Object object); |
| 215 | |
| 216 | /** |
| 217 | * Returns a {@code List} iterator on the elements of this {@code List}. The elements are |
no outgoing calls