
io.github.rbajek.rasa.sdk.util.StringUtils Maven / Gradle / Ivy
package io.github.rbajek.rasa.sdk.util;
public class StringUtils {
public static boolean isNullOrEmpty(String str) {
return str == null || str.isEmpty();
}
public static boolean isNotNullOrEmpty(String str) {
return !isNullOrEmpty(str);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy