![JAR search and dependency download from the Maven repository](/logo.png)
edu.stanford.protege.webprotege.DeserializationUtil Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege;
import javax.annotation.Nullable;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2019-12-20
*/
public class DeserializationUtil {
public static String nonNull(@Nullable String value) {
if(value == null) {
return "";
}
else {
return value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy