MCPcopy Create free account
hub / github.com/antlr/codebuff / isUpperCase

Method isUpperCase

output/java_guava/1.4.19/Ascii.java:529–531  ·  view source on GitHub ↗

Indicates whether c is one of the twenty-six uppercase ASCII alphabetic characters between 'A' and 'Z' inclusive. All others (including non-ASCII characters) return false.

(char c)

Source from the content-addressed store, hash-verified

527
528
529 public static boolean isUpperCase(char c) {
530 return (c >= 'A') && (c <= 'Z');
531 }
532
533 /**
534 * Truncates the given character sequence to the given maximum length. If the length of the

Callers 3

hasUpperCaseMethod · 0.95
toLowerCaseMethod · 0.95
matchesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected