
xmlparser.utils.Functions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplexml Show documentation
Show all versions of simplexml Show documentation
A clean and simple XML parser, serializer, and deserializer.
The newest version!
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