The version of this method without a parameter creates a new array and copies each of the values into it. The version with the int[] parameters fills an already-allocated array with the values (more efficient than creating a new array each time). If 'array' is null, or not the same size as th
()
| 337 | * @webBrief Create a new array and copy each of the values into it |
| 338 | */ |
| 339 | public int[] valueArray() { |
| 340 | crop(); |
| 341 | return valueArray(null); |
| 342 | } |
| 343 | |
| 344 | |
| 345 | /** |