You can buy this project and download/modify it how often you want.
package com.structurizr.util; public final class StringUtils { public static boolean isNullOrEmpty(String s) { return s == null || s.trim().length() == 0; } }