Checks if the specified character is a computer letter (A - Z, a - z, _). @param ch the character to be checked @return result of check
(final int ch)
| 1249 | * @return result of check |
| 1250 | */ |
| 1251 | public static boolean letter(final int ch) { |
| 1252 | return ch >= 'A' && ch <= 'Z' || ch >= 'a' && ch <= 'z' || ch == '_'; |
| 1253 | } |
| 1254 | |
| 1255 | /** |
| 1256 | * Checks if the specified character is a digit (0 - 9). |
no outgoing calls
no test coverage detected