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

net.oschina.thrift.client.support.util.Utils Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package net.oschina.thrift.client.support.util;

/**
 * @author Arvin
 * @time 2017/3/1 19:42
 */
public class Utils {

    public static boolean isBlank(String value) {
        return null == value || "".equals(value.trim());
    }

    public static boolean isNotBlank(String value) {
        return null != value && !"".equals(value.trim());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy