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

io.github.openunirest.http.ObjectMapper Maven / Gradle / Ivy

There is a newer version: 2.5.03
Show newest version
package io.github.openunirest.http;

import io.github.openunirest.http.exceptions.UnirestException;
import io.github.openunirest.request.GenericType;

public interface ObjectMapper {
	 T readValue(String value, Class valueType);
	default  T readValue(String value, GenericType genericType){
		throw new UnirestException("Please implement me");
	}
	String writeValue(Object value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy