Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DMapType.java83 public MapType withValueHandler(Object h) { in withValueHandler() method in MapType
91 _superClass, _superInterfaces, _keyType, _valueType.withValueHandler(h), in withContentValueHandler()
148 _superClass, _superInterfaces, _keyType.withValueHandler(h), _valueType, in withKeyValueHandler()
DCollectionType.java95 public CollectionType withValueHandler(Object h) { in withValueHandler() method in CollectionType
103 _superClass, _superInterfaces, _elementType.withValueHandler(h), in withContentValueHandler()
DMapLikeType.java135 public MapLikeType withValueHandler(Object h) { in withValueHandler() method in MapLikeType
144 _superInterfaces, _keyType, _valueType.withValueHandler(h), in withContentValueHandler()
273 _superInterfaces, _keyType.withValueHandler(h), _valueType, in withKeyValueHandler()
DArrayType.java78 public ArrayType withValueHandler(Object h) { in withValueHandler() method in ArrayType
90 return new ArrayType(_componentType.withValueHandler(h), _bindings, _emptyArray, in withContentValueHandler()
DReferenceType.java124 public ReferenceType withValueHandler(Object h) { in withValueHandler() method in ReferenceType
138 JavaType refdType = _referencedType.withValueHandler(h); in withContentValueHandler()
DCollectionLikeType.java124 public CollectionLikeType withValueHandler(Object h) { in withValueHandler() method in CollectionLikeType
132 _superClass, _superInterfaces, _elementType.withValueHandler(h), in withContentValueHandler()
DPlaceholderForType.java62 public JavaType withValueHandler(Object h) { in withValueHandler() method in PlaceholderForType
DResolvedRecursiveType.java84 public JavaType withValueHandler(Object h) { in withValueHandler() method in ResolvedRecursiveType
DSimpleType.java189 public SimpleType withValueHandler(Object h) { in withValueHandler() method in SimpleType
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJavaType.java124 public abstract JavaType withValueHandler(Object h); in withValueHandler() method in JavaType
149 type = type.withValueHandler(h); in withHandlersFrom()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DCreatorCollector.java264 baseType = baseType.withValueHandler(deser); in _computeDelegateType()