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

tech.guyi.ipojo.compile.lib.utils.StringUtils Maven / Gradle / Ivy

There is a newer version: 1.0.0.4
Show newest version
package tech.guyi.ipojo.compile.lib.utils;

public class StringUtils {

    public static boolean isEmpty(Object text){
        return text == null || "".equals(text);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy