Home
last modified time | relevance | path

Searched refs:_typeHandler (Results 1 – 8 of 8) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DMapType.java65 _valueHandler, _typeHandler, _asStatic); in _narrow()
79 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
85 _superClass, _superInterfaces, _keyType, _valueType, h, _typeHandler, _asStatic); in withValueHandler()
92 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
102 _valueHandler, _typeHandler, true); in withStaticTyping()
111 _keyType, contentType, _valueHandler, _typeHandler, _asStatic); in withContentType()
120 keyType, _valueType, _valueHandler, _typeHandler, _asStatic); in withKeyType()
128 _valueHandler, _typeHandler, _asStatic); in refine()
142 _valueHandler, _typeHandler, _asStatic); in withKeyTypeHandler()
149 _valueHandler, _typeHandler, _asStatic); in withKeyValueHandler()
DMapLikeType.java95 _typeHandler, _asStatic); in _narrow()
107 _typeHandler, _asStatic); in withKeyType()
117 _typeHandler, _asStatic); in withContentType()
131 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
137 _superInterfaces, _keyType, _valueType, h, _typeHandler, in withValueHandler()
145 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
178 _valueHandler, _typeHandler, true); in withStaticTyping()
185 _keyType, _valueType, _valueHandler, _typeHandler, _asStatic); in refine()
268 _valueHandler, _typeHandler, _asStatic); in withKeyTypeHandler()
274 _valueHandler, _typeHandler, _asStatic); in withKeyValueHandler()
DReferenceType.java99 contentType, _anchorType, _valueHandler, _typeHandler, _asStatic); in withContentType()
105 if (h == _typeHandler) { in withTypeHandler()
120 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
130 h, _typeHandler,_asStatic); in withValueHandler()
141 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
151 _valueHandler, _typeHandler, true); in withStaticTyping()
159 _valueHandler, _typeHandler, _asStatic); in refine()
186 _valueHandler, _typeHandler, _asStatic); in _narrow()
DCollectionType.java77 contentType, _valueHandler, _typeHandler, _asStatic); in withContentType()
91 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
97 _superClass, _superInterfaces, _elementType, h, _typeHandler, _asStatic); in withValueHandler()
104 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
114 _valueHandler, _typeHandler, true); in withStaticTyping()
122 _valueHandler, _typeHandler, _asStatic); in refine()
DSimpleType.java138 _valueHandler, _typeHandler, _asStatic); in _narrow()
144 _superInterfaces, _valueHandler, _typeHandler, _asStatic); in _narrow()
149 null, _valueHandler, _typeHandler, _asStatic); in _narrow()
156 new JavaType[] { this }, _valueHandler, _typeHandler, _asStatic); in _narrow()
161 new JavaType[] { superb }, _valueHandler, _typeHandler, _asStatic); in _narrow()
176 if (_typeHandler == h) { in withTypeHandler()
193 …return new SimpleType(_class, _bindings, _superClass, _superInterfaces, h, _typeHandler, _asStatic… in withValueHandler()
205 _superClass, _superInterfaces, _valueHandler, _typeHandler, true); in withStaticTyping()
DArrayType.java55 _valueHandler, _typeHandler, _asStatic); in withContentType()
61 if (h == _typeHandler) { in withTypeHandler()
74 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
82 return new ArrayType(_componentType, _bindings, _emptyArray, h, _typeHandler,_asStatic); in withValueHandler()
91 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
100 _emptyArray, _valueHandler, _typeHandler, true); in withStaticTyping()
DCollectionLikeType.java97 _valueHandler, _typeHandler, _asStatic); in _narrow()
106 contentType, _valueHandler, _typeHandler, _asStatic); in withContentType()
120 _valueHandler, _typeHandler, _asStatic); in withContentTypeHandler()
126 _superClass, _superInterfaces, _elementType, h, _typeHandler, _asStatic); in withValueHandler()
133 _valueHandler, _typeHandler, _asStatic); in withContentValueHandler()
156 _valueHandler, _typeHandler, true); in withStaticTyping()
164 _valueHandler, _typeHandler, _asStatic); in refine()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJavaType.java56 protected final Object _typeHandler; field in JavaType
83 _typeHandler = typeHandler; in JavaType()
97 _typeHandler = base._typeHandler; in JavaType()
144 if (h != _typeHandler) { in withHandlersFrom()
485 public <T> T getTypeHandler() { return (T) _typeHandler; } in getTypeHandler()
511 return (_typeHandler != null) || (_valueHandler != null); in hasHandlers()