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