This is used in place of Character.isDigit(), since the latter also supports unicode digits. @param c @return
(char c)
| 497 | * @return |
| 498 | */ |
| 499 | private boolean isDigit(char c) { |
| 500 | return '0' <= c && c <= '9'; |
| 501 | } |
| 502 | |
| 503 | /** |
| 504 | * This is used in place of Character.isLetter(), since the latter also supports |
no outgoing calls