Copies the characters in this string to a character array. @return a character array containing the characters of this string.
()
| 1441 | * @return a character array containing the characters of this string. |
| 1442 | */ |
| 1443 | public char[] toCharArray() { |
| 1444 | char[] buffer = new char[count]; |
| 1445 | System.arraycopy(value, offset, buffer, 0, count); |
| 1446 | return buffer; |
| 1447 | } |
| 1448 | |
| 1449 | /** |
| 1450 | * Converts the characters in this string to lowercase, using the default |
no test coverage detected