MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / isNumeric

Method isNumeric

vm/JavaAPI/src/java/net/URIHelper.java:658–660  ·  view source on GitHub ↗

Test if a character is US-ASCII number (0-9).

(int ch)

Source from the content-addressed store, hash-verified

656 * Test if a character is US-ASCII number (0-9).
657 */
658 static boolean isNumeric(int ch) {
659 return (ch >= '0' && ch <= '9');
660 }
661}

Callers 3

isLegalMethod · 0.95
isAlphaNumMethod · 0.95
isValidSchemeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected