/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/ |
D | ReferenceTypeDeserializer.java | 48 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
|
D | AtomicReferenceDeserializer.java | 24 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()
|
D | MapDeserializer.java | 507 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 …]
|
D | CollectionDeserializer.java | 301 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()
|
D | ObjectArrayDeserializer.java | 200 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()
|
D | MapEntryDeserializer.java | 200 final TypeDeserializer typeDeser = _valueTypeDeserializer; in deserialize() local 211 } else if (typeDeser == null) { in deserialize() 214 value = valueDes.deserializeWithType(p, ctxt, typeDeser); in deserialize()
|
D | EnumMapDeserializer.java | 273 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/ |
D | CreatorProperty.java | 82 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()
|
D | SettableAnyProperty.java | 60 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()
|
D | SettableBeanProperty.java | 134 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()
|
D | BeanDeserializerFactory.java | 839 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()
|
D | BeanDeserializerBase.java | 578 TypeDeserializer typeDeser = prop.getValueTypeDeserializer(); in resolve() local 579 if (typeDeser.getTypeInclusion() == JsonTypeInfo.As.EXTERNAL_PROPERTY) { in resolve() 583 extTypes.addExternal(prop, typeDeser); in resolve()
|
D | BasicDeserializerFactory.java | 1012 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/ |
D | ExternalTypeHandler.java | 391 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()
|
D | TypeWrappedDeserializer.java | 29 public TypeWrappedDeserializer(TypeDeserializer typeDeser, JsonDeserializer<?> deser) in TypeWrappedDeserializer() argument 32 _typeDeserializer = typeDeser; in TypeWrappedDeserializer()
|
D | SetterlessProperty.java | 37 TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedMethod method) in SetterlessProperty() argument 39 super(propDef, type, typeDeser, contextAnnotations); in SetterlessProperty()
|
D | FieldProperty.java | 44 TypeDeserializer typeDeser, Annotations contextAnnotations, AnnotatedField field) in FieldProperty() argument 46 super(propDef, type, typeDeser, contextAnnotations); in FieldProperty()
|
D | MethodProperty.java | 39 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/ |
D | DeserializationContext.java | 597 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()
|