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

com.blade.jdbc.utils.StringUtils Maven / Gradle / Ivy

There is a newer version: 0.2.2-RELEASE
Show newest version
package com.blade.jdbc.utils;

/**
 * Created by biezhi on 2016/12/25.
 */
public class StringUtils {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy