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)
| 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 |
no outgoing calls
no test coverage detected