All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jd.httpservice.converters.ObjectToStringConverter Maven / Gradle / Ivy

There is a newer version: 2.1.4.RELEASE
Show newest version
package com.jd.httpservice.converters;

import com.jd.httpservice.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