Home
last modified time | relevance | path

Searched refs:constructParametricType (Results 1 – 8 of 8) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DContainerTypesTest.java38 .constructParametricType(List.class, Long.class); in testImplicitCollectionType()
48 JavaType t = tf.constructParametricType(List.class, HashMap.class); in testMissingCollectionType()
67 .constructParametricType(Map.class, Long.class, Boolean.class); in testImplicitMapType()
DTestTypeFactory.java180 JavaType t3 = tf.constructParametricType(HashSet.class, t.getBindings()); // HashSet<String> in testParametricTypes()
195 JavaType custom2 = tf.constructParametricType(SingleArgGeneric.class, t.getBindings()); in testParametricTypes()
654 JavaType type = tf.constructParametricType(Wrapper1297.class, Map.class); in testRawMapType()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java1027 public JavaType constructParametricType(Class<?> parametrized, Class<?>... parameterClasses) { in constructParametricType() method in TypeFactory
1033 return constructParametricType(parametrized, pt); in constructParametricType()
1062 public JavaType constructParametricType(Class<?> rawType, JavaType... parameterTypes) in constructParametricType() method in TypeFactory
1064 return constructParametricType(rawType, TypeBindings.create(rawType, parameterTypes)); in constructParametricType()
1085 public JavaType constructParametricType(Class<?> rawType, TypeBindings parameterTypes) in constructParametricType() method in TypeFactory
1102 return constructParametricType(parametrized, parameterTypes); in constructParametrizedType()
1114 return constructParametricType(parametrized, parameterClasses); in constructParametrizedType()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/
DAbstractTypeMapping1186Test.java40 mapper.getTypeFactory().constructParametricType(IContainer.class, MyObject.class)); in testDeserializeMyContainer()
DTestTypedContainerSerialization.java129 … JavaType rootType = mapper.getTypeFactory().constructParametricType(Iterator.class, Animal.class); in testIssue329()
DTestWithGenerics.java160 …String json = MAPPER.writerFor(MAPPER.getTypeFactory().constructParametricType(ContainerWithGetter… in testWrapperWithExplicitType()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/module/
DTestTypeModifiers.java239 … JavaType type = MAPPER_WITH_MODIFIER.getTypeFactory().constructParametricType(MapMarker.class, in testMapLikeTypeViaParametric()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DBeanDeserializerFactory.java162 …builderType = ctxt.getTypeFactory().constructParametricType(builderClass, valueType.getBindings()); in createBuilderBasedDeserializer()