Returns an array containing all the elements of this stream. @return the array of elements
()
| 354 | * @return the array of elements |
| 355 | */ |
| 356 | public Object[] toArray() { |
| 357 | List<Object> result = new ArrayList<>(); |
| 358 | while (iterator.hasNext()) { |
| 359 | result.add(iterator.next()); |
| 360 | } |
| 361 | return result.toArray(new Object[0]); |
| 362 | } |
| 363 | |
| 364 | |
| 365 | /** |
no test coverage detected