com.base4j.cache.utils.StrExtUtils Maven / Gradle / Ivy
package com.base4j.cache.utils;
/**
* @author FY
* @since 1.0
*/
public class StrExtUtils {
public static boolean isNullOrEmpty(String string) {
return string == null || string.length() == 0;
}
}