/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | MapType.java | 69 public MapType withTypeHandler(Object h) { in withTypeHandler() method in MapType 78 _superClass, _superInterfaces, _keyType, _valueType.withTypeHandler(h), in withContentTypeHandler() 141 _superClass, _superInterfaces, _keyType.withTypeHandler(h), _valueType, in withKeyTypeHandler()
|
D | CollectionType.java | 81 public CollectionType withTypeHandler(Object h) { in withTypeHandler() method in CollectionType 90 _superClass, _superInterfaces, _elementType.withTypeHandler(h), in withContentTypeHandler()
|
D | MapLikeType.java | 121 public MapLikeType withTypeHandler(Object h) { in withTypeHandler() method in MapLikeType 130 _superInterfaces, _keyType, _valueType.withTypeHandler(h), in withContentTypeHandler() 267 _superInterfaces, _keyType.withTypeHandler(h), _valueType, in withKeyTypeHandler()
|
D | ArrayType.java | 59 public ArrayType withTypeHandler(Object h) in withTypeHandler() method in ArrayType 73 return new ArrayType(_componentType.withTypeHandler(h), _bindings, _emptyArray, in withContentTypeHandler()
|
D | ReferenceType.java | 103 public ReferenceType withTypeHandler(Object h) in withTypeHandler() method in ReferenceType 119 _referencedType.withTypeHandler(h), _anchorType, in withContentTypeHandler()
|
D | CollectionLikeType.java | 110 public CollectionLikeType withTypeHandler(Object h) { in withTypeHandler() method in CollectionLikeType 119 _superClass, _superInterfaces, _elementType.withTypeHandler(h), in withContentTypeHandler()
|
D | PlaceholderForType.java | 52 public JavaType withTypeHandler(Object h) { in withTypeHandler() method in PlaceholderForType
|
D | ResolvedRecursiveType.java | 74 public JavaType withTypeHandler(Object h) { in withTypeHandler() method in ResolvedRecursiveType
|
D | SimpleType.java | 175 public SimpleType withTypeHandler(Object h) { in withTypeHandler() method in SimpleType
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | JavaType.java | 107 public abstract JavaType withTypeHandler(Object h); in withTypeHandler() method in JavaType 145 type = type.withTypeHandler(h); in withHandlersFrom()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | BasicDeserializerFactory.java | 2201 type = type.withTypeHandler(valueTypeDeser); in resolveMemberAndTypeAnnotations()
|