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

xmlparser.utils.Functions Maven / Gradle / Ivy

package xmlparser.utils;

public enum Functions {;

    public static boolean isNullOrEmpty(final String value) {
        return value == null || value.isEmpty();
    }

    public static String trim(final String input) {
        return input == null ? "" : input.trim();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy