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

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy