Returns an instance of Iterator that may be used to access the objects contained by this Collection. The order in which the elements are returned by the Iterator is not defined unless the instance of the Collection has a defined order. In that case, the elements are
()
| 197 | * @return an iterator for accessing the {@code Collection} contents. |
| 198 | */ |
| 199 | public abstract Iterator<E> iterator(); |
| 200 | |
| 201 | /** |
| 202 | * Removes one instance of the specified object from this {@code Collection} if one |