--- old/make/data/characterdata/CharacterData00.java.template 2018-12-06 23:03:01.924877731 -0600 +++ new/make/data/characterdata/CharacterData00.java.template 2018-12-06 23:03:01.324897531 -0600 @@ -754,6 +754,21 @@ return retval; } + boolean isDigit(int ch) { + int props = getProperties(ch); + return (props & $$maskType) == Character.DECIMAL_DIGIT_NUMBER; + } + + boolean isLowerCase(int ch) { + int props = getProperties(ch); + return (props & $$maskType) == Character.LOWERCASE_LETTER; + } + + boolean isUpperCase(int ch) { + int props = getProperties(ch); + return (props & $$maskType) == Character.UPPERCASE_LETTER; + } + boolean isWhitespace(int ch) { int props = getProperties(ch); return ((props & $$maskIdentifierInfo) == $$valueJavaWhitespace);