Package java.lang
Class Character

Public Method isISOControl

static boolean isISOControl(char ch)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Determines if the specified character is an ISO control character. A character is considered to be an ISO control character if its code is in the range \u0000 through \u001F or in the range \u007F through \u009F.

Example

   if (Character.isISOControl((char)0x0008));
      Logger.log("This character is a control character!");

Returns true if the specified character is ignorable.