Java Character .isIdentifierIgnorable (int codePoint)
Syntax
Character.isIdentifierIgnorable(int codePoint) has the following syntax.
public static boolean isIdentifierIgnorable(int codePoint)
Example
In the following code shows how to use Character.isIdentifierIgnorable(int codePoint) method.
public class Main {
/* w w w .j a v a2s. c om*/
public static void main(String[] args) {
int cp1 = 0x008f, cp2 = 0x0abc;
boolean b1 = Character.isIdentifierIgnorable(cp1);
boolean b2 = Character.isIdentifierIgnorable(cp2);
System.out.println( b1 );
System.out.println( b1 );
}
}
The code above generates the following result.