Returns if this Collection contains no elements. This implementation tests, whether size returns 0. @return true if this Collection has no elements, false otherwise. @see #size
()
| 182 | * @see #size |
| 183 | */ |
| 184 | public boolean isEmpty() { |
| 185 | return size() == 0; |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Returns an instance of {@link Iterator} that may be used to access the |