You can buy this project and download/modify it how often you want.
package com.github.yoojia.next.lang; /** * @author YOOJIA.CHEN (yoojia.chen@gmail.com) * @version 2015-10-16 */ public class Text { public static boolean isEmpty(CharSequence input) { return input == null || input.length() == 0; } }