org.noear.wood.utils.StringUtils Maven / Gradle / Ivy
The newest version!
package org.noear.wood.utils;
public class StringUtils {
public static boolean isEmpty(String str) {
return (str == null || str.length() == 0);
}
public static boolean isNotEmpty(String str) {
return !(str == null || str.length() == 0);
}
}