@Singleton public class JsonNodeToObjectConverter extends Object implements TypeConverter<com.fasterxml.jackson.databind.JsonNode,Object>
| Constructor and Description | 
|---|
| JsonNodeToObjectConverter(com.fasterxml.jackson.databind.ObjectMapper objectMapper)Deprecated. 
 Use  JsonNodeToObjectConverter(Provider)instead | 
| JsonNodeToObjectConverter(Provider<com.fasterxml.jackson.databind.ObjectMapper> objectMapper) | 
| Modifier and Type | Method and Description | 
|---|---|
| Optional<Object> | convert(com.fasterxml.jackson.databind.JsonNode node,
       Class<Object> targetType,
       ConversionContext context)Converts from the given source object type to the target type. | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitconvert, of@Deprecated public JsonNodeToObjectConverter(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
JsonNodeToObjectConverter(Provider) insteadobjectMapper - To read/write JSONpublic Optional<Object> convert(com.fasterxml.jackson.databind.JsonNode node, Class<Object> targetType, ConversionContext context)
TypeConverterOptional.empty()
 in case the object is not convertible by catching any necessary exceptions and failing gracefully.convert in interface TypeConverter<com.fasterxml.jackson.databind.JsonNode,Object>node - The object typetargetType - The target type being converted tocontext - The ConversionContext