Interface JacksonObjectReader

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface JacksonObjectReader
Defines the contract for Object Mapping readers. Implementations of this interface can deserialize a given byte array holding JSON to an Object considering the target type.

Reader functions can customize how the actual JSON is being deserialized by e.g. obtaining a customized ObjectReader applying serialization features, date formats, or views.

Since:
4.0
Author:
Christoph Strobl, Mark Paluch