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

Method isLegalUnicode

vm/JavaAPI/src/java/net/URIHelper.java:602–604  ·  view source on GitHub ↗
(int ch)

Source from the content-addressed store, hash-verified

600 }
601
602 static boolean isLegalUnicode(int ch) {
603 return isASCII(ch) == false && isSpace(ch) == false && isISOControl(ch) == false;
604 }
605
606 static boolean isASCII(int ch) {
607 return ch > 0 && ch < 128;

Callers 1

isLegalMethod · 0.95

Calls 3

isASCIIMethod · 0.95
isSpaceMethod · 0.95
isISOControlMethod · 0.95

Tested by

no test coverage detected