io.github.openunirest.http.ObjectMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unirest-java Show documentation
Show all versions of unirest-java Show documentation
Simplified, lightweight HTTP client library
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