Character.isIdentifierIgnorable(int codePoint) has the following syntax.
public static boolean isIdentifierIgnorable(int codePoint)
In the following code shows how to use Character.isIdentifierIgnorable(int codePoint) method.
public class Main { //from w ww . j ava2s.co m 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.