package com.emato.ich.utils; public class StringUtils { public static boolean isNullOrEmpty(String s) { return s == null || s.isEmpty(); } }