public class AtomicReferenceDeserializer extends ReferenceTypeDeserializer<AtomicReference<Object>>
JsonDeserializer.None_fullType, _valueDeserializer, _valueInstantiator, _valueTypeDeserializer_valueClass, F_MASK_ACCEPT_ARRAYS, F_MASK_INT_COERCIONS| Constructor and Description |
|---|
AtomicReferenceDeserializer(JavaType fullType,
ValueInstantiator inst,
TypeDeserializer typeDeser,
JsonDeserializer<?> deser) |
| Modifier and Type | Method and Description |
|---|---|
Object |
getEmptyValue(DeserializationContext ctxt)
Method called to determine value to be used for "empty" values
(most commonly when deserializing from empty JSON Strings).
|
AtomicReference<Object> |
getNullValue(DeserializationContext ctxt)
Method that can be called to determine value to be used for
representing null values (values deserialized when JSON token
is
JsonToken.VALUE_NULL). |
Object |
getReferenced(AtomicReference<Object> reference)
Method that may be called to find contents of specified reference,
if any; or `null` if none.
|
AtomicReference<Object> |
referenceValue(Object contents) |
Boolean |
supportsUpdate(DeserializationConfig config)
By default we assume that updateability mostly relies on value
deserializer; if it supports updates, typically that's what
matters.
|
AtomicReference<Object> |
updateReference(AtomicReference<Object> reference,
Object contents)
Method called in case of "merging update", in which we should try
update reference instead of creating a new one.
|
AtomicReferenceDeserializer |
withResolved(TypeDeserializer typeDeser,
JsonDeserializer<?> valueDeser)
Mutant factory method called when changes are needed; should construct
newly configured instance with new values as indicated.
|
createContextual, deserialize, deserialize, deserializeWithType, getEmptyAccessPattern, getNullAccessPattern, getValueType_byteOverflow, _coercedTypeDesc, _coerceEmptyString, _coerceIntegral, _coerceNullToken, _coerceTextualNull, _deserializeFromArray, _deserializeFromEmpty, _deserializeWrappedValue, _failDoubleToIntCoercion, _findNullProvider, _hasTextualNull, _intOverflow, _isEmptyOrTextualNull, _isIntNumber, _isNaN, _isNegInf, _isPosInf, _neitherNull, _nonNullNumber, _parseBooleanFromInt, _parseBooleanPrimitive, _parseBytePrimitive, _parseDate, _parseDate, _parseDateFromArray, _parseDoublePrimitive, _parseDoublePrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseIntPrimitive, _parseIntPrimitive, _parseLongPrimitive, _parseLongPrimitive, _parseShortPrimitive, _parseString, _reportFailedNullCoerce, _shortOverflow, _verifyEndArrayForSingle, _verifyNullForPrimitive, _verifyNullForPrimitiveCoercion, _verifyNullForScalarCoercion, _verifyNumberForScalarCoercion, _verifyStringForScalarCoercion, findContentNullProvider, findContentNullStyle, findConvertingContentDeserializer, findDeserializer, findFormatFeature, findFormatOverrides, findValueNullProvider, getValueClass, handledType, handleMissingEndArrayForSingle, handleUnknownProperty, isDefaultDeserializer, isDefaultKeyDeserializer, parseDoublefindBackReference, getDelegatee, getEmptyValue, getKnownPropertyNames, getNullValue, getObjectIdReader, isCachable, replaceDelegatee, unwrappingDeserializerpublic AtomicReferenceDeserializer(JavaType fullType, ValueInstantiator inst, TypeDeserializer typeDeser, JsonDeserializer<?> deser)
public AtomicReferenceDeserializer withResolved(TypeDeserializer typeDeser, JsonDeserializer<?> valueDeser)
ReferenceTypeDeserializerNOTE: caller has verified that there are changes, so implementations need NOT check if a new instance is needed.
withResolved in class ReferenceTypeDeserializer<AtomicReference<Object>>public AtomicReference<Object> getNullValue(DeserializationContext ctxt)
JsonDeserializerJsonToken.VALUE_NULL). Usually this is simply
Java null, but for some types (especially primitives) it may be
necessary to use non-null values.
Since version 2.6 (in which the context argument was added), call is expected to be made each and every time a null token needs to be handled.
Default implementation simply returns null.
getNullValue in interface NullValueProvidergetNullValue in class ReferenceTypeDeserializer<AtomicReference<Object>>public Object getEmptyValue(DeserializationContext ctxt)
JsonDeserializerJsonDeserializer.getNullValue(com.fasterxml.jackson.databind.DeserializationContext) (which in turn
is usually simply Java null), but it can be overridden
for types. Or, if type should never be converted from empty
String, method can also throw an exception.
Since version 2.6 (in which the context argument was added), call is expected to be made each and every time an empty value is needed.
Since version 2.9 does not require return of `T` any more.
Default implementation simply calls JsonDeserializer.getNullValue(com.fasterxml.jackson.databind.DeserializationContext) and
returns value.
getEmptyValue in class ReferenceTypeDeserializer<AtomicReference<Object>>public AtomicReference<Object> referenceValue(Object contents)
referenceValue in class ReferenceTypeDeserializer<AtomicReference<Object>>public Object getReferenced(AtomicReference<Object> reference)
ReferenceTypeDeserializergetReferenced in class ReferenceTypeDeserializer<AtomicReference<Object>>public AtomicReference<Object> updateReference(AtomicReference<Object> reference, Object contents)
ReferenceTypeDeserializerupdateReference in class ReferenceTypeDeserializer<AtomicReference<Object>>public Boolean supportsUpdate(DeserializationConfig config)
ReferenceTypeDeserializersupportsUpdate in class ReferenceTypeDeserializer<AtomicReference<Object>>Copyright © 2018 JBoss by Red Hat. All rights reserved.