Character.isJavaIdentifierPart(char ch) has the following syntax.
public static boolean isJavaIdentifierPart(char ch)
In the following code shows how to use Character.isJavaIdentifierPart(char ch) method.
public class Main { /*www. j a va 2 s . c o m*/ public static void main(String[] args) { char ch1 = '3', ch2 = '_'; boolean b1 = Character.isJavaIdentifierPart(ch1); boolean b2 = Character.isJavaIdentifierPart(ch2); System.out.println( b1 ); System.out.println( b2 ); } }
The code above generates the following result.