Searched refs:constructMapType (Results 1 – 9 of 9) sorted by relevance
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/ |
D | ContainerTypesTest.java | 57 .constructMapType(StringLongMap.class, in testExplicitMapType() 96 .constructMapType(StringLongMap.class, Boolean.class, Long.class); in testMismatchedMapType() 105 .constructMapType(StringLongMap.class, String.class, Class.class); in testMismatchedMapType()
|
D | TestTypeFactory.java | 250 t = tf.constructMapType(EnumMap.class, EnumForCanonical.class, String.class); in testCanonicalNames() 373 t = tf.constructMapType(TreeMap.class, String.class, Integer.class); in testMaps() 433 MapType t = tf.constructMapType(HashMap.class, String.class, Long.class); in testTypeGeneralization()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/ |
D | MapWithGenericValuesDeserTest.java | 148 … TypeFactory.defaultInstance().constructMapType(HashMap.class, KeyTypeCtor.class, Integer.class)); in testKeyViaCtor() 161 …TypeFactory.defaultInstance().constructMapType(HashMap.class, KeyTypeFactory.class, Integer.class)… in testKeyViaFactory()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/contextual/ |
D | TestContextualKeyTypes.java | 99 …String json = mapper.writerFor(TypeFactory.defaultInstance().constructMapType(HashMap.class, Strin… in testSimpleKeySer()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ |
D | ClassNameIdResolver.java | 118 … str = typeFactory.constructMapType(EnumMap.class, enumClass, valueClass).toCanonical(); in _idFrom()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | TypeFactory.java | 876 public MapType constructMapType(Class<? extends Map> mapClass, in constructMapType() method in TypeFactory 885 return constructMapType(mapClass, kt, vt); in constructMapType() 893 …public MapType constructMapType(Class<? extends Map> mapClass, JavaType keyType, JavaType valueTyp… in constructMapType() method in TypeFactory 1166 return constructMapType(mapClass, unknownType(), unknownType()); in constructRawMapType()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/ |
D | NullHandlingTest.java | 173 … JavaType type = mapper.getTypeFactory().constructMapType(Map.class, String.class, String.class); in testMapOfNulls()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/ |
D | UntypedObjectDeserializer.java | 154 …_mapDeserializer = _clearIfStdImpl(_findCustomDeser(ctxt, tf.constructMapType(Map.class, stringTyp… in resolve()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | ObjectMapper.java | 4059 _typeFactory.constructMapType(Map.class, String.class, type), null,
|