Home
last modified time | relevance | path

Searched refs:constructSpecializedType (Results 1 – 22 of 22) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestTypeFactory1604.java44 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()
DTestJavaType.java267 JavaType sub = tf.constructSpecializedType(base, AtomicReference.class); in testObjectToReferenceSpecialization()
DTestTypeFactory.java347 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/
DDatabindContext.java160 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()
DSerializerProvider.java337 public JavaType constructSpecializedType(JavaType baseType, Class<?> subclass) in constructSpecializedType() method in SerializerProvider
345 return getConfig().getTypeFactory().constructSpecializedType(baseType, subclass, true); in constructSpecializedType()
DDeserializationContext.java294 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/
DIndexedListSerializer.java113 provider.constructSpecializedType(_elementType, cc), provider); in serializeContents()
175 provider.constructSpecializedType(_elementType, cc), provider); in serializeTypedContents()
DIteratorSerializer.java112 provider.constructSpecializedType(_elementType, cc), provider); in _serializeDynamicContents()
DUnwrappingBeanPropertyWriter.java210 JavaType subtype = provider.constructSpecializedType(_nonTrivialBaseType, type); in _findAndAddDynamic()
DMapEntrySerializer.java387 provider.constructSpecializedType(_valueType, cc), provider); in serializeDynamic()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/module/
DSimpleAbstractTypeResolver.java80 return config.getTypeFactory().constructSpecializedType(type, dst); in findTypeMapping()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DMapperConfig.java321 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/
DJacksonAnnotationIntrospector.java817 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/
DCollectionSerializer.java138 provider.constructSpecializedType(_elementType, cc), provider); in serializeContents()
DReferenceTypeSerializer.java461 JavaType fullType = provider.constructSpecializedType(_referredType, rawType); in _findCachedSerializer()
DObjectArraySerializer.java247 provider.constructSpecializedType(_elementType, cc), provider); in serializeContents()
DMapSerializer.java1241 provider.constructSpecializedType(_valueType, cc), provider); in _findSerializer()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/
DTypeDeserializerBase.java190 type = ctxt.constructSpecializedType(_baseType, type.getRawClass()); in _findDeserializer()
DStdTypeResolverBuilder.java181 .constructSpecializedType(baseType, _defaultImpl); in defineDefaultImpl()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java369 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/
DBeanPropertyWriter.java894 JavaType t = provider.constructSpecializedType(_nonTrivialBaseType, in _findAndAddDynamic()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DBasicDeserializerFactory.java1257 .constructSpecializedType(type, collectionClass, true); in _mapAbstractCollectionType()
1410 .constructSpecializedType(type, mapClass, true); in _mapAbstractMapType()