All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.base4j.cache.utils.StrExtUtils Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy