com.jd.blockchain.utils.http.converters.ObjectToStringConverter Maven / Gradle / Ivy
package com.jd.blockchain.utils.http.converters;
import com.jd.blockchain.utils.http.StringConverter;
public class ObjectToStringConverter implements StringConverter {
@Override
public String toString(Object param) {
return param == null ? null : param.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy