Interface HttpCall.BodyConverter<V>
- 
- All Known Implementing Classes:
 SearchResultConverter
public static interface HttpCall.BodyConverter<V> 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vconvert(com.fasterxml.jackson.core.JsonParser parser, java.util.function.Supplier<java.lang.String> contentString)Prefer using theparserfor request-scoped conversions. 
 - 
 
- 
- 
Method Detail
- 
convert
V convert(com.fasterxml.jackson.core.JsonParser parser, java.util.function.Supplier<java.lang.String> contentString) throws java.io.IOException
Prefer using theparserfor request-scoped conversions. Typically,contentStringis only for an unexpected failure.- Throws:
 java.io.IOException
 
 - 
 
 -