MCPcopy Create free account
hub / github.com/BaseXdb/basex / letterOrDigit

Method letterOrDigit

basex-core/src/main/java/org/basex/util/Token.java:1269–1271  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 3

validCharMethod · 0.95
encodeUriMethod · 0.95
completeMoreMethod · 0.80

Calls 2

letterMethod · 0.95
digitMethod · 0.95

Tested by

no test coverage detected