{@inheritDoc}
()
| 75 | * {@inheritDoc} |
| 76 | */ |
| 77 | @SuppressWarnings("unchecked") |
| 78 | @Override |
| 79 | public E[] toArray() { |
| 80 | int size = size(); |
| 81 | E[] copy = (E[]) new Object[size]; |
| 82 | System.arraycopy(contents, 0, copy, 0, size); |
| 83 | return copy; |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * {@inheritDoc} |