Uses of Class
com.fasterxml.jackson.databind.deser.std.ContainerDeserializerBase
-
Packages that use ContainerDeserializerBase Package Description com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses. -
-
Uses of ContainerDeserializerBase in com.fasterxml.jackson.databind.deser.std
Subclasses of ContainerDeserializerBase in com.fasterxml.jackson.databind.deser.std Modifier and Type Class Description classArrayBlockingQueueDeserializerWe need a custom deserializer both becauseArrayBlockingQueuehas no default constructor AND because it has size limit used for constructing underlying storage automatically.classCollectionDeserializerBasic serializer that can take JSON "Array" structure and construct aCollectioninstance, with typed contents.classEnumMapDeserializerDeserializer forEnumMapvalues.classMapDeserializerBasic serializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.classMapEntryDeserializerBasic serializer that can take JSON "Object" structure and construct aMapinstance, with typed contents.classObjectArrayDeserializerBasic serializer that can serialize non-primitive arrays.classStringCollectionDeserializerSpecifically optimized version forCollections that contain String values; reason is that this is a very common type and we can make use of the fact that Strings are final.Constructors in com.fasterxml.jackson.databind.deser.std with parameters of type ContainerDeserializerBase Constructor Description ContainerDeserializerBase(ContainerDeserializerBase<?> base)ContainerDeserializerBase(ContainerDeserializerBase<?> base, NullValueProvider nuller, Boolean unwrapSingle)
-