Checks if the specified character is a computer letter or digit. @param ch the character to be checked @return result of check
(final int ch)
| 1267 | * @return result of check |
| 1268 | */ |
| 1269 | public static boolean letterOrDigit(final int ch) { |
| 1270 | return letter(ch) || digit(ch); |
| 1271 | } |
| 1272 | |
| 1273 | /** |
| 1274 | * Converts the specified token to upper case. |
no test coverage detected