MCPcopy Create free account
hub / github.com/ReadyTalk/avian / isUpperCase

Method isUpperCase

classpath/java/lang/Character.java:145–147  ·  view source on GitHub ↗
(char c)

Source from the content-addressed store, hash-verified

143 }
144
145 public static boolean isUpperCase(char c) {
146 return (c >= 'A' && c <= 'Z');
147 }
148
149 public static boolean isUpperCase(int c) {
150 return canCastToChar(c) && isUpperCase((char) c);

Callers

nothing calls this directly

Calls 1

canCastToCharMethod · 0.95

Tested by

no test coverage detected