com.murong.val.util.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of verify Show documentation
Show all versions of verify Show documentation
verify project for Spring Boot
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;
}
}