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) { if (null == str) return true; if ("".equals(str.trim())) return true; return false; }//from www.j a v a 2 s. com public static boolean isBlank(Long str) { if (null == str) return true; return false; } }