Indicates whether {@code c} is one of the twenty-six uppercase ASCII alphabetic characters between {@code 'A'} and {@code 'Z'} inclusive. All others (including non-ASCII characters) return {@code false}.
(char c)
| 512 | * return {@code false}. |
| 513 | */ |
| 514 | public static boolean isUpperCase(char c) { |
| 515 | return (c >= 'A') && (c <= 'Z'); |
| 516 | } |
| 517 | |
| 518 | /** |
| 519 | * Truncates the given character sequence to the given maximum length. If the length of the |
no outgoing calls