Character.isISOControl(char ch) has the following syntax.
public static boolean isISOControl(char ch)
In the following code shows how to use Character.isISOControl(char ch) method.
public class Main { /*from w w w . j a v a2 s . co m*/ public static void main(String[] args) { char ch1 = ':', ch2 = '\u0013'; boolean b1 = Character.isISOControl(ch1); boolean b2 = Character.isISOControl(ch2); System.out.println( b1 ); System.out.println( b2 ); } }
The code above generates the following result.