be.ugent.rml.functions.lib.UtilFunctions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rmlmapper Show documentation
Show all versions of rmlmapper Show documentation
The RMLMapper executes RML rules to generate high quality Linked Data from multiple originally (semi-)structured data sources.
package be.ugent.rml.functions.lib;
public class UtilFunctions {
public static boolean equal(String str1, String str2) {
if (str1 == null) {
return false;
} else {
return str1.equals(str2);
}
}
public static boolean notEqual(String str1, String str2) {
return !equal(str1, str2);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy