Package java.lang
Class Character

Public Method isWhitespace

static boolean isWhitespace(char ch)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Determines if the specified character is whitespace according to Java. A character is considered to be a Java whitespace character if and only if it satisfies one of the following criteria:

Example

   if (Character.isWhitespace('\t'));
      Logger.log("This character is a Java whitespace character!");

Returns true if the specified character is a Java whitespace character.