com.mashape.unirest.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 com.mashape.unirest.http;
public interface ObjectMapper {
Object readValue(String value);
String writeValue(Object value);
}