/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/ |
D | TestTypeFactory1604.java | 44 JavaType subtype = tf.constructSpecializedType(base, DataList1604.class); in testCustomTypesRefinedSimple() 57 JavaType subtype = tf.constructSpecializedType(base, RefinedDataList1604.class); in testCustomTypesRefinedNested() 72 JavaType subtype = tf.constructSpecializedType(base, SneakyDataList1604.class); in testCustomTypesRefinedSneaky() 93 JavaType subtype = tf.constructSpecializedType(type, SneakyTwoParam1604.class); in testTwoParamSneakyCustom() 114 tf.constructSpecializedType(base, DataList1604.class); in testErrorForMismatch() 129 JavaType lefty = tf.constructSpecializedType(base, Left.class); in testResolveGenericPartialSubtypes() 136 JavaType righty = tf.constructSpecializedType(base, Right.class); in testResolveGenericPartialSubtypes()
|
D | TestJavaType.java | 267 JavaType sub = tf.constructSpecializedType(base, AtomicReference.class); in testObjectToReferenceSpecialization()
|
D | TestTypeFactory.java | 347 JavaType subtype = tf.constructSpecializedType(type, ArrayList.class); in testCollectionTypesRefined() 413 JavaType subtype = tf.constructSpecializedType(type, LinkedHashMap.class); in testMapTypesRefined()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | DatabindContext.java | 160 public abstract JavaType constructSpecializedType(JavaType baseType, Class<?> subclass); in constructSpecializedType() method in DatabindContext 199 return getTypeFactory().constructSpecializedType(baseType, cls); in resolveSubType() 239 final JavaType subType = config.getTypeFactory().constructSpecializedType(baseType, cls); in resolveAndValidateSubType()
|
D | SerializerProvider.java | 337 public JavaType constructSpecializedType(JavaType baseType, Class<?> subclass) in constructSpecializedType() method in SerializerProvider 345 return getConfig().getTypeFactory().constructSpecializedType(baseType, subclass, true); in constructSpecializedType()
|
D | DeserializationContext.java | 294 public JavaType constructSpecializedType(JavaType baseType, Class<?> subclass) in constructSpecializedType() method in DeserializationContext 302 return getConfig().getTypeFactory().constructSpecializedType(baseType, subclass, false); in constructSpecializedType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/ |
D | IndexedListSerializer.java | 113 provider.constructSpecializedType(_elementType, cc), provider); in serializeContents() 175 provider.constructSpecializedType(_elementType, cc), provider); in serializeTypedContents()
|
D | IteratorSerializer.java | 112 provider.constructSpecializedType(_elementType, cc), provider); in _serializeDynamicContents()
|
D | UnwrappingBeanPropertyWriter.java | 210 JavaType subtype = provider.constructSpecializedType(_nonTrivialBaseType, type); in _findAndAddDynamic()
|
D | MapEntrySerializer.java | 387 provider.constructSpecializedType(_valueType, cc), provider); in serializeDynamic()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/module/ |
D | SimpleAbstractTypeResolver.java | 80 return config.getTypeFactory().constructSpecializedType(type, dst); in findTypeMapping()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/ |
D | MapperConfig.java | 321 public JavaType constructSpecializedType(JavaType baseType, Class<?> subclass) { in constructSpecializedType() method in MapperConfig 323 return getTypeFactory().constructSpecializedType(baseType, subclass, true); in constructSpecializedType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/ |
D | JacksonAnnotationIntrospector.java | 817 type = tf.constructSpecializedType(type, serClass); in refineSerializationType() 852 keyType = tf.constructSpecializedType(keyType, keyClass); in refineSerializationType() 888 contentType = tf.constructSpecializedType(contentType, contentClass); in refineSerializationType() 1188 type = tf.constructSpecializedType(type, valueClass); in refineDeserializationType() 1205 keyType = tf.constructSpecializedType(keyType, keyClass); in refineDeserializationType() 1222 contentType = tf.constructSpecializedType(contentType, contentClass); in refineDeserializationType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | CollectionSerializer.java | 138 provider.constructSpecializedType(_elementType, cc), provider); in serializeContents()
|
D | ReferenceTypeSerializer.java | 461 JavaType fullType = provider.constructSpecializedType(_referredType, rawType); in _findCachedSerializer()
|
D | ObjectArraySerializer.java | 247 provider.constructSpecializedType(_elementType, cc), provider); in serializeContents()
|
D | MapSerializer.java | 1241 provider.constructSpecializedType(_valueType, cc), provider); in _findSerializer()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ |
D | TypeDeserializerBase.java | 190 type = ctxt.constructSpecializedType(_baseType, type.getRawClass()); in _findDeserializer()
|
D | StdTypeResolverBuilder.java | 181 .constructSpecializedType(baseType, _defaultImpl); in defineDefaultImpl()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | TypeFactory.java | 369 public JavaType constructSpecializedType(JavaType baseType, Class<?> subclass) in constructSpecializedType() method in TypeFactory 372 return constructSpecializedType(baseType, subclass, false); in constructSpecializedType() 392 public JavaType constructSpecializedType(JavaType baseType, Class<?> subclass, in constructSpecializedType() method in TypeFactory
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/ |
D | BeanPropertyWriter.java | 894 JavaType t = provider.constructSpecializedType(_nonTrivialBaseType, in _findAndAddDynamic()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | BasicDeserializerFactory.java | 1257 .constructSpecializedType(type, collectionClass, true); in _mapAbstractCollectionType() 1410 .constructSpecializedType(type, mapClass, true); in _mapAbstractMapType()
|