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

com.murong.val.util.StringUtils Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.murong.val.util;

public class StringUtils {

    public static boolean isBlank(String value) {
        if (value == null) {
            return true;
        }
        if (value.trim().length() == 0) {
            return true;
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy