Determines if the specified character (Unicode code point) should be regarded as an ignorable character in a Java identifier or a Unicode identifier.
The following Unicode characters are ignorable in a Java identifier or a Unicode identifier:
'\u0000' through '\u0008'
'\u000E' through '\u001B'
'\u007F' through '\u009F'
FORMAT general
category value
codePoint | the character (Unicode code point) to be tested. |
true if the character is an ignorable control
character that may be part of a Java or Unicode identifier;
false otherwise.
Character.isJavaIdentifierPart(int), Character.isUnicodeIdentifierPart(int)
Diagram: Character