Java examples for java.lang:char
Indicates if the given character is a value separator.
import java.io.IOException; import java.io.OutputStream; public class Main{ /**/* ww w .j a v a2 s . c om*/ * Indicates if the given character is a value separator. * * @param character * The character to test. * @return True if the given character is a value separator. */ public static boolean isLinearWhiteSpace(int character) { return (isCarriageReturn(character) || isSpace(character) || isLineFeed(character) || HeaderUtils .isHorizontalTab(character)); } /** * Indicates if the given character is a carriage return. * * @param character * The character to test. * @return True if the given character is a carriage return. */ public static boolean isCarriageReturn(int character) { return (character == 13); } /** * Indicates if the given character is a space. * * @param character * The character to test. * @return True if the given character is a space. */ public static boolean isSpace(int character) { return (character == 32); } /** * Indicates if the given character is a line feed. * * @param character * The character to test. * @return True if the given character is a line feed. */ public static boolean isLineFeed(int character) { return (character == 10); } /** * Indicates if the given character is an horizontal tab. * * @param character * The character to test. * @return True if the given character is an horizontal tab. */ public static boolean isHorizontalTab(int character) { return (character == 9); } }