Class NoOpTypeDeserializer

java.lang.Object
tools.jackson.databind.jsontype.TypeDeserializer
tools.jackson.databind.jsontype.impl.NoOpTypeDeserializer

public class NoOpTypeDeserializer extends TypeDeserializer
Special TypeDeserializer implementation used to explicitly block type deserialization. This is used when a property or class is annotated with @JsonTypeInfo(use = Id.NONE), indicating that type information should not be expected or processed even if the value type has a class-level type info annotation.

Unlike returning null (which means "no special type handling, use defaults"), this actively prevents type information from being read.

Since:
3.1