Home
last modified time | relevance | path

Searched refs:withTypeHandler (Results 1 – 11 of 11) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DMapType.java69 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()
DCollectionType.java81 public CollectionType withTypeHandler(Object h) { in withTypeHandler() method in CollectionType
90 _superClass, _superInterfaces, _elementType.withTypeHandler(h), in withContentTypeHandler()
DMapLikeType.java121 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()
DArrayType.java59 public ArrayType withTypeHandler(Object h) in withTypeHandler() method in ArrayType
73 return new ArrayType(_componentType.withTypeHandler(h), _bindings, _emptyArray, in withContentTypeHandler()
DReferenceType.java103 public ReferenceType withTypeHandler(Object h) in withTypeHandler() method in ReferenceType
119 _referencedType.withTypeHandler(h), _anchorType, in withContentTypeHandler()
DCollectionLikeType.java110 public CollectionLikeType withTypeHandler(Object h) { in withTypeHandler() method in CollectionLikeType
119 _superClass, _superInterfaces, _elementType.withTypeHandler(h), in withContentTypeHandler()
DPlaceholderForType.java52 public JavaType withTypeHandler(Object h) { in withTypeHandler() method in PlaceholderForType
DResolvedRecursiveType.java74 public JavaType withTypeHandler(Object h) { in withTypeHandler() method in ResolvedRecursiveType
DSimpleType.java175 public SimpleType withTypeHandler(Object h) { in withTypeHandler() method in SimpleType
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJavaType.java107 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/
DBasicDeserializerFactory.java2201 type = type.withTypeHandler(valueTypeDeser); in resolveMemberAndTypeAnnotations()