Class CollectionDeserializer

All Implemented Interfaces:
ContextualDeserializer, NullValueProvider, ValueInstantiator.Gettable, Serializable
Direct Known Subclasses:
ArrayBlockingQueueDeserializer

public class CollectionDeserializer extends ContainerDeserializerBase<Collection<Object>> implements ContextualDeserializer
Basic serializer that can take JSON "Array" structure and construct a Collection instance, with typed contents.

Note: for untyped content (one indicated by passing Object.class as the type), UntypedObjectDeserializer is used instead. It can also construct Lists, but not with specific POJO types, only other containers and primitives/wrappers.

See Also: