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

xyz.proteanbear.template.utils.StringUtils Maven / Gradle / Ivy

The newest version!
package xyz.proteanbear.template.utils;

/**
 * String tool
 *
 * @author ProteanBear
 */
public class StringUtils
{
    /**
     * Check if the string is blank.
     *
     * @param string the string.
     * @return If the string is blank,return true.
     */
    public static boolean isBlank(String string)
    {
        return (string == null || !string.trim().isEmpty());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy