![JAR search and dependency download from the Maven repository](/logo.png)
io.joshworks.restclient.http.mapper.TextPlainMapper 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
Rest Java client based on Unirest
package io.joshworks.restclient.http.mapper;
public class TextPlainMapper implements ObjectMapper {
@Override
public T readValue(String value, Class valueType) {
throw new UnsupportedOperationException("Cannot convert text content to type: " + valueType.getSimpleName());
}
@Override
public String writeValue(Object value) {
return String.valueOf(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy