net.oschina.thrift.client.support.util.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thrift-client-support Show documentation
Show all versions of thrift-client-support Show documentation
thrift-client-support is an sdk for easy use thrift connect to the thrift server.
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