Interface Jackson2ObjectReader

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

@FunctionalInterface @Deprecated(since="4.0", forRemoval=true) public interface Jackson2ObjectReader
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of 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:
3.0
Author:
Mark Paluch