Java tutorial
//package com.java2s; public class Main { public static boolean isBlank(String value) { return value == null || value.length() < 1; } }