Here you can find the source of isBlank(Long str)
public static boolean isBlank(Long 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 w w w . j ava 2 s. c om*/ public static boolean isBlank(Long str) { if (null == str) return true; return false; } }