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

Method isUpperCase

output/java_guava/1.4.13/Ascii.java:568–570  ·  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

566
567
568 public static boolean isUpperCase(char c) {
569 return (c >= 'A') && (c <= 'Z');
570 }
571
572 /**
573 * Truncates the given character sequence to the given maximum length. If the length of the

Callers 2

toLowerCaseMethod · 0.95
matchesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected