Home
last modified time | relevance | path

Searched refs:typeDeser (Results 1 – 19 of 19) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DReferenceTypeDeserializer.java48 TypeDeserializer typeDeser, JsonDeserializer<?> deser) in ReferenceTypeDeserializer() argument
54 _valueTypeDeserializer = typeDeser; in ReferenceTypeDeserializer()
59 TypeDeserializer typeDeser, JsonDeserializer<?> deser) in ReferenceTypeDeserializer() argument
61 this(fullType, null, typeDeser, deser); in ReferenceTypeDeserializer()
74 TypeDeserializer typeDeser = _valueTypeDeserializer; in createContextual() local
75 if (typeDeser != null) { in createContextual()
76 typeDeser = typeDeser.forProperty(property); in createContextual()
79 if ((deser == _valueDeserializer) && (typeDeser == _valueTypeDeserializer)) { in createContextual()
82 return withResolved(typeDeser, deser); in createContextual()
118 protected abstract ReferenceTypeDeserializer<T> withResolved(TypeDeserializer typeDeser, in withResolved() argument
DAtomicReferenceDeserializer.java24 TypeDeserializer typeDeser, JsonDeserializer<?> deser) in AtomicReferenceDeserializer() argument
26 super(fullType, inst, typeDeser, deser); in AtomicReferenceDeserializer()
36 …public AtomicReferenceDeserializer withResolved(TypeDeserializer typeDeser, JsonDeserializer<?> va… in withResolved() argument
38 typeDeser, valueDeser); in withResolved()
DMapDeserializer.java507 final TypeDeserializer typeDeser = _valueTypeDeserializer; in _readAndBind() local
546 } else if (typeDeser == null) { in _readAndBind()
549 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in _readAndBind()
573 final TypeDeserializer typeDeser = _valueTypeDeserializer; in _readAndBindStringKeyMap() local
608 } else if (typeDeser == null) { in _readAndBindStringKeyMap()
611 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in _readAndBindStringKeyMap()
635 final TypeDeserializer typeDeser = _valueTypeDeserializer; in _deserializeUsingCreator() local
679 } else if (typeDeser == null) { in _deserializeUsingCreator()
682 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in _deserializeUsingCreator()
714 final TypeDeserializer typeDeser = _valueTypeDeserializer; in _readAndUpdate() local
[all …]
DCollectionDeserializer.java301 final TypeDeserializer typeDeser = _valueTypeDeserializer; in _deserializeFromArray() local
311 } else if (typeDeser == null) { in _deserializeFromArray()
314 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in _deserializeFromArray()
352 final TypeDeserializer typeDeser = _valueTypeDeserializer; in handleNonArray() local
363 } else if (typeDeser == null) { in handleNonArray()
366 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in handleNonArray()
392 final TypeDeserializer typeDeser = _valueTypeDeserializer; in _deserializeWithObjectId() local
405 } else if (typeDeser == null) { in _deserializeWithObjectId()
408 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in _deserializeWithObjectId()
DObjectArrayDeserializer.java200 final TypeDeserializer typeDeser = _elementTypeDeserializer; in deserialize() local
212 } else if (typeDeser == null) { in deserialize()
215 value = _elementDeserializer.deserializeWithType(p, ctxt, typeDeser); in deserialize()
268 final TypeDeserializer typeDeser = _elementTypeDeserializer; in deserialize() local
279 } else if (typeDeser == null) { in deserialize()
282 value = _elementDeserializer.deserializeWithType(p, ctxt, typeDeser); in deserialize()
DMapEntryDeserializer.java200 final TypeDeserializer typeDeser = _valueTypeDeserializer; in deserialize() local
211 } else if (typeDeser == null) { in deserialize()
214 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in deserialize()
DEnumMapDeserializer.java273 final TypeDeserializer typeDeser = _valueTypeDeserializer; in deserialize() local
315 } else if (typeDeser == null) { in deserialize()
318 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in deserialize()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DCreatorProperty.java82 TypeDeserializer typeDeser, in CreatorProperty() argument
87 super(name, type, wrapperName, typeDeser, contextAnnotations, metadata); in CreatorProperty()
99 TypeDeserializer typeDeser, in CreatorProperty() argument
104 this(name, type, wrapperName, typeDeser, contextAnnotations, param, index, in CreatorProperty()
129 TypeDeserializer typeDeser, in construct() argument
134 return new CreatorProperty(name, type, wrapperName, typeDeser, contextAnnotations, in construct()
DSettableAnyProperty.java60 JsonDeserializer<Object> valueDeser, TypeDeserializer typeDeser) in SettableAnyProperty() argument
66 _valueTypeDeserializer = typeDeser; in SettableAnyProperty()
73 JsonDeserializer<Object> valueDeser, TypeDeserializer typeDeser) in SettableAnyProperty() argument
75 this(property, setter, type, null, valueDeser, typeDeser); in SettableAnyProperty()
DSettableBeanProperty.java134 JavaType type, TypeDeserializer typeDeser, Annotations contextAnnotations) in SettableBeanProperty() argument
136 this(propDef.getFullName(), type, propDef.getWrapperName(), typeDeser, in SettableBeanProperty()
141 TypeDeserializer typeDeser, Annotations contextAnnotations, in SettableBeanProperty() argument
161 if (typeDeser != null) { in SettableBeanProperty()
162 typeDeser = typeDeser.forProperty(this); in SettableBeanProperty()
164 _valueTypeDeserializer = typeDeser; in SettableBeanProperty()
DBeanDeserializerFactory.java839 TypeDeserializer typeDeser = valueType.getTypeHandler(); in constructAnySetter() local
841 keyDeser, deser, typeDeser); in constructAnySetter()
866 TypeDeserializer typeDeser = type.getTypeHandler(); in constructSettableProperty() local
869 prop = new MethodProperty(propDef, type, typeDeser, in constructSettableProperty()
873 prop = new FieldProperty(propDef, type, typeDeser, in constructSettableProperty()
906 TypeDeserializer typeDeser = type.getTypeHandler(); in constructSetterlessProperty() local
907 SettableBeanProperty prop = new SetterlessProperty(propDef, type, typeDeser, in constructSetterlessProperty()
DBeanDeserializerBase.java578 TypeDeserializer typeDeser = prop.getValueTypeDeserializer(); in resolve() local
579 if (typeDeser.getTypeInclusion() == JsonTypeInfo.As.EXTERNAL_PROPERTY) { in resolve()
583 extTypes.addExternal(prop, typeDeser); in resolve()
DBasicDeserializerFactory.java1012 TypeDeserializer typeDeser = (TypeDeserializer) type.getTypeHandler(); in constructCreatorProperty() local
1014 if (typeDeser == null) { in constructCreatorProperty()
1015 typeDeser = findTypeDeserializer(config, type); in constructCreatorProperty()
1025 typeDeser, beanDesc.getClassAnnotations(), param, index, injectable, in constructCreatorProperty()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DExternalTypeHandler.java391 public void addExternal(SettableBeanProperty property, TypeDeserializer typeDeser) in addExternal() argument
394 _properties.add(new ExtTypedProperty(property, typeDeser)); in addExternal()
396 _addPropertyIndex(typeDeser.getPropertyName(), index); in addExternal()
451 public ExtTypedProperty(SettableBeanProperty property, TypeDeserializer typeDeser) in ExtTypedProperty() argument
454 _typeDeserializer = typeDeser; in ExtTypedProperty()
455 _typePropertyName = typeDeser.getPropertyName(); in ExtTypedProperty()
DTypeWrappedDeserializer.java29 public TypeWrappedDeserializer(TypeDeserializer typeDeser, JsonDeserializer<?> deser) in TypeWrappedDeserializer() argument
32 _typeDeserializer = typeDeser; in TypeWrappedDeserializer()
DSetterlessProperty.java37 TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method) in SetterlessProperty() argument
39 super(propDef, type, typeDeser, contextAnnotations); in SetterlessProperty()
DFieldProperty.java44 TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedField field) in FieldProperty() argument
46 super(propDef, type, typeDeser, contextAnnotations); in FieldProperty()
DMethodProperty.java39 JavaType type, TypeDeserializer typeDeser, in MethodProperty() argument
42 super(propDef, type, typeDeser, contextAnnotations); in MethodProperty()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDeserializationContext.java597 TypeDeserializer typeDeser = _factory.findTypeDeserializer(_config, type); in findRootValueDeserializer() local
598 if (typeDeser != null) { in findRootValueDeserializer()
600 typeDeser = typeDeser.forProperty(null); in findRootValueDeserializer()
601 return new TypeWrappedDeserializer(typeDeser, deser); in findRootValueDeserializer()