(char value)
| 1368 | } |
| 1369 | |
| 1370 | public static String toString(char value) { |
| 1371 | if (value < CHAR_STRINGS.length) { |
| 1372 | return CHAR_STRINGS[value]; |
| 1373 | } |
| 1374 | return Character.toString(value); |
| 1375 | } |
| 1376 | |
| 1377 | public static String toString(CharSequence s) { |
| 1378 | return s == null ? null : s.toString(); |