Method isISOControl(char ch)
Return type: boolean
Member of: java.lang.Character
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 if (Character.isDefined(c) && ! Character.isISOControl(c)) {
2 return Character.isISOControl(c) ? "." : (new
3 if( Character.isISOControl(ch) ) return '.';
4 if (Character.isISOControl(c) ||
5 if (Character.isISOControl(aChar)) {
6 if (!Character.isISOControl(c) && keyCode !=
7 if (Character.isISOControl (c)) {
8 if (Character.isISOControl(aChar)) {
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.