Package java.lang
Class Character
static boolean isUpperCase(char ch)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Determines if the specified character is an uppercase character. A character is uppercase if it is not in the range 'Unicode\u2000' through 'Unicode\u2FFF', the Unicode attribute table does not specify a mapping to uppercase for the character, and at least one of the following is true:
Example
if (Character.isUpperCase('A'));
Logger.log("This character is a uppercase character!");
Returns true if the specified character is a uppercase character.