Character.isWhitespace

Character.isWhitespace

Class Overview | Class Members | This Package | All Packages

Syntax
public static boolean isWhitespace( char ch )
Parameters
ch
the character to be tested.
Returns
true if the character is a Java whitespace character; false otherwise.
Description
Determines if the specified character is white space according to Java. A character is considered to be a Java whitespace character if and only if it satisfies one of the following criteria:

See Also
isSpaceChar