Here you can find the source of isBlank(String str)
public static boolean isBlank(String str)
//package com.java2s; public class Main { public static boolean isBlank(String str) { int strLen; if (str == null || (strLen = str.length()) == 0) { return true; }/*w w w .j ava2s .c om*/ for (int i = 0; i < strLen; i++) { if ((Character.isWhitespace(str.charAt(i)) == false)) { return false; } } return true; } }