Home
last modified time | relevance | path

Searched refs:constructGeneralizedType (Results 1 – 3 of 3) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestTypeFactory.java434 JavaType superT = tf.constructGeneralizedType(t, Map.class); in testTypeGeneralization()
438 assertSame(t, tf.constructGeneralizedType(t, HashMap.class)); in testTypeGeneralization()
442 tf.constructGeneralizedType(t, TreeMap.class); in testTypeGeneralization()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DJacksonAnnotationIntrospector.java815 type = tf.constructGeneralizedType(type, serClass); in refineSerializationType()
850 keyType = tf.constructGeneralizedType(keyType, keyClass); in refineSerializationType()
886 contentType = tf.constructGeneralizedType(contentType, contentClass); in refineSerializationType()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java590 public JavaType constructGeneralizedType(JavaType baseType, Class<?> superClass) in constructGeneralizedType() method in TypeFactory