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

org.hibernate.search.develocity.util.Strings Maven / Gradle / Ivy

package org.hibernate.search.develocity.util;

public final class Strings {

    private Strings() {
    }

    public static boolean isBlank(String string) {
        if (string == null) {
            return true;
        }

        return string.isBlank();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy