Java tutorial
//package com.java2s; //License from project: Apache License public class Main { static Boolean isBlank(String str) { return str == null || str.isEmpty(); } }