Searched refs:withValueHandler (Results 1 – 11 of 11) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | MapType.java | 83 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()
|
D | CollectionType.java | 95 public CollectionType withValueHandler(Object h) { in withValueHandler() method in CollectionType 103 _superClass, _superInterfaces, _elementType.withValueHandler(h), in withContentValueHandler()
|
D | MapLikeType.java | 135 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()
|
D | ArrayType.java | 78 public ArrayType withValueHandler(Object h) { in withValueHandler() method in ArrayType 90 return new ArrayType(_componentType.withValueHandler(h), _bindings, _emptyArray, in withContentValueHandler()
|
D | ReferenceType.java | 124 public ReferenceType withValueHandler(Object h) { in withValueHandler() method in ReferenceType 138 JavaType refdType = _referencedType.withValueHandler(h); in withContentValueHandler()
|
D | CollectionLikeType.java | 124 public CollectionLikeType withValueHandler(Object h) { in withValueHandler() method in CollectionLikeType 132 _superClass, _superInterfaces, _elementType.withValueHandler(h), in withContentValueHandler()
|
D | PlaceholderForType.java | 62 public JavaType withValueHandler(Object h) { in withValueHandler() method in PlaceholderForType
|
D | ResolvedRecursiveType.java | 84 public JavaType withValueHandler(Object h) { in withValueHandler() method in ResolvedRecursiveType
|
D | SimpleType.java | 189 public SimpleType withValueHandler(Object h) { in withValueHandler() method in SimpleType
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | JavaType.java | 124 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/ |
D | CreatorCollector.java | 264 baseType = baseType.withValueHandler(deser); in _computeDelegateType()
|