eu.xenit.apix.utils.SerializableUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
package eu.xenit.apix.utils;
import java.text.SimpleDateFormat;
public class SerializableUtils {
public static java.lang.String toString(java.io.Serializable serializable) {
if (serializable == null) {
return null;
}
if (serializable instanceof java.util.Date) {
return StringUtils.formattedDate((java.util.Date) serializable);
}
return serializable.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy