Create a new array with a copy of all the values. @return an array sized by the length of the list with each of the values. @webref stringlist:method @webBrief Create a new array with a copy of all the values
()
| 696 | * @webBrief Create a new array with a copy of all the values |
| 697 | */ |
| 698 | public String[] toArray() { |
| 699 | return toArray(null); |
| 700 | } |
| 701 | |
| 702 | |
| 703 | @Deprecated |
no test coverage detected