Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
isLegal
Method · 0.95
isAlphaNum
Method · 0.95
isValidScheme
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected