Module tools.jackson.databind
Package tools.jackson.databind.deser.jdk
Class ArrayBlockingQueueDeserializer
java.lang.Object
tools.jackson.databind.ValueDeserializer<T>
tools.jackson.databind.deser.std.StdDeserializer<T>
tools.jackson.databind.deser.std.ContainerDeserializerBase<Collection<Object>>
tools.jackson.databind.deser.jdk.CollectionDeserializer
tools.jackson.databind.deser.jdk.ArrayBlockingQueueDeserializer
- All Implemented Interfaces:
NullValueProvider
,ValueInstantiator.Gettable
We need a custom deserializer both because
ArrayBlockingQueue
has no
default constructor AND because it has size limit used for constructing
underlying storage automatically.-
Nested Class Summary
Nested classes/interfaces inherited from class tools.jackson.databind.deser.jdk.CollectionDeserializer
CollectionDeserializer.CollectionReferringAccumulator
Nested classes/interfaces inherited from class tools.jackson.databind.ValueDeserializer
ValueDeserializer.None
-
Field Summary
Fields inherited from class tools.jackson.databind.deser.jdk.CollectionDeserializer
_delegateDeserializer, _valueDeserializer, _valueInstantiator, _valueTypeDeserializer
Fields inherited from class tools.jackson.databind.deser.std.ContainerDeserializerBase
_containerType, _nullProvider, _skipNullValues, _unwrapSingle
Fields inherited from class tools.jackson.databind.deser.std.StdDeserializer
_valueClass, _valueType, F_MASK_INT_COERCIONS
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Copy-constructor that can be used by sub-classes to allow copy-on-write styling copying of settings of an existing instance.ArrayBlockingQueueDeserializer
(JavaType containerType, ValueDeserializer<Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator) protected
ArrayBlockingQueueDeserializer
(JavaType containerType, ValueDeserializer<Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator, ValueDeserializer<Object> delegateDeser, NullValueProvider nuller, Boolean unwrapSingle) Constructor used when creating contextualized instances. -
Method Summary
Modifier and TypeMethodDescriptionprotected Collection<Object>
_deserializeFromArray
(JsonParser p, DeserializationContext ctxt, Collection<Object> result0) protected Collection<Object>
deserializeWithType
(JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer) Base implementation that does not assume specific type inclusion mechanism.protected ArrayBlockingQueueDeserializer
withResolved
(ValueDeserializer<?> dd, ValueDeserializer<?> vd, TypeDeserializer vtd, NullValueProvider nuller, Boolean unwrapSingle) Fluent-factory method call to construct contextual instance.Methods inherited from class tools.jackson.databind.deser.jdk.CollectionDeserializer
_deserializeFromString, _deserializeWithObjectId, _tryToAddNull, createContextual, deserialize, deserialize, getContentDeserializer, getValueInstantiator, handleNonArray, isCachable, logicalType
Methods inherited from class tools.jackson.databind.deser.std.ContainerDeserializerBase
findBackReference, getContentType, getEmptyAccessPattern, getEmptyValue, getValueType, supportsUpdate, wrapAndThrow
Methods inherited from class tools.jackson.databind.deser.std.StdDeserializer
_byteOverflow, _checkBooleanToStringCoercion, _checkCoercionFail, _checkDoubleSpecialValue, _checkFloatSpecialValue, _checkFloatToIntCoercion, _checkFloatToStringCoercion, _checkFromStringCoercion, _checkFromStringCoercion, _checkIntToFloatCoercion, _checkIntToStringCoercion, _checkTextualNull, _checkToStringCoercion, _coerceBooleanFromInt, _coercedTypeDesc, _coercedTypeDesc, _coerceIntegral, _deserializeFromArray, _deserializeFromEmptyString, _deserializeFromString, _deserializeWrappedValue, _findCoercionFromBlankString, _findCoercionFromEmptyArray, _findCoercionFromEmptyString, _findNullProvider, _hasTextualNull, _intOverflow, _isBlank, _isFalse, _isIntNumber, _isNaN, _isNegInf, _isPosInf, _isTrue, _neitherNull, _nonNullNumber, _parseBoolean, _parseBooleanPrimitive, _parseBytePrimitive, _parseDate, _parseDate, _parseDateFromArray, _parseDouble, _parseDoublePrimitive, _parseDoublePrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseInteger, _parseInteger, _parseIntPrimitive, _parseIntPrimitive, _parseLong, _parseLong, _parseLongPrimitive, _parseLongPrimitive, _parseShortPrimitive, _parseString, _reportFailedNullCoerce, _shortOverflow, _verifyEndArrayForSingle, _verifyNullForPrimitive, _verifyNullForPrimitiveCoercion, _wrapIOFailure, findContentNullProvider, findContentNullStyle, findConvertingContentDeserializer, findDeserializer, findFormatFeature, findFormatOverrides, findValueNullProvider, getValueType, handledType, handleMissingEndArrayForSingle, handleNestedArrayForSingle, handleUnknownProperty, isDefaultDeserializer, isDefaultKeyDeserializer
Methods inherited from class tools.jackson.databind.ValueDeserializer
deserializeWithType, getAbsentValue, getDelegatee, getKnownPropertyNames, getNullAccessPattern, getNullValue, getObjectIdReader, replaceDelegatee, resolve, unwrappingDeserializer
-
Constructor Details
-
ArrayBlockingQueueDeserializer
public ArrayBlockingQueueDeserializer(JavaType containerType, ValueDeserializer<Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator) -
ArrayBlockingQueueDeserializer
protected ArrayBlockingQueueDeserializer(JavaType containerType, ValueDeserializer<Object> valueDeser, TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator, ValueDeserializer<Object> delegateDeser, NullValueProvider nuller, Boolean unwrapSingle) Constructor used when creating contextualized instances. -
ArrayBlockingQueueDeserializer
Copy-constructor that can be used by sub-classes to allow copy-on-write styling copying of settings of an existing instance.
-
-
Method Details
-
withResolved
protected ArrayBlockingQueueDeserializer withResolved(ValueDeserializer<?> dd, ValueDeserializer<?> vd, TypeDeserializer vtd, NullValueProvider nuller, Boolean unwrapSingle) Fluent-factory method call to construct contextual instance.- Overrides:
withResolved
in classCollectionDeserializer
-
createDefaultInstance
protected Collection<Object> createDefaultInstance(DeserializationContext ctxt) throws JacksonException - Overrides:
createDefaultInstance
in classCollectionDeserializer
- Throws:
JacksonException
-
_deserializeFromArray
protected Collection<Object> _deserializeFromArray(JsonParser p, DeserializationContext ctxt, Collection<Object> result0) throws JacksonException - Overrides:
_deserializeFromArray
in classCollectionDeserializer
- Throws:
JacksonException
-
deserializeWithType
public Object deserializeWithType(JsonParser p, DeserializationContext ctxt, TypeDeserializer typeDeserializer) throws JacksonException Description copied from class:StdDeserializer
Base implementation that does not assume specific type inclusion mechanism. Sub-classes are expected to override this method if they are to handle type information.- Overrides:
deserializeWithType
in classCollectionDeserializer
typeDeserializer
- Deserializer to use for handling type information- Throws:
JacksonException
-