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

org.carrot2.util.StringUtils Maven / Gradle / Ivy

There is a newer version: 0.2.13
Show newest version
package org.carrot2.util;

import com.google.common.base.CharMatcher;
import com.google.common.base.Strings;

public class StringUtils {

    public static boolean isBlank(final String string)
    {
        return Strings.isNullOrEmpty(string) ? true : CharMatcher.WHITESPACE.matchesAllOf(string);
    }

    public static boolean isNotBlank(final String string)
    {
        return !StringUtils.isBlank(string);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy