Home
last modified time | relevance | path

Searched refs:_valueType (Results 1 – 9 of 9) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DMapLikeType.java27 protected final JavaType _valueType; field in MapLikeType
42 _valueType = valueT; in MapLikeType()
51 _valueType = valueT; in MapLikeType()
94 _superInterfaces, _keyType, _valueType, _valueHandler, in _narrow()
106 _superInterfaces, keyType, _valueType, _valueHandler, in withKeyType()
112 if (_valueType == contentType) { in withContentType()
123 _superInterfaces, _keyType, _valueType, _valueHandler, h, in withTypeHandler()
130 _superInterfaces, _keyType, _valueType.withTypeHandler(h), in withContentTypeHandler()
137 _superInterfaces, _keyType, _valueType, h, _typeHandler, in withValueHandler()
144 _superInterfaces, _keyType, _valueType.withValueHandler(h), in withContentValueHandler()
[all …]
DMapType.java64 _superClass, _superInterfaces, _keyType, _valueType, in _narrow()
71 _superClass, _superInterfaces, _keyType, _valueType, _valueHandler, h, _asStatic); in withTypeHandler()
78 _superClass, _superInterfaces, _keyType, _valueType.withTypeHandler(h), in withContentTypeHandler()
85 _superClass, _superInterfaces, _keyType, _valueType, h, _typeHandler, _asStatic); in withValueHandler()
91 _superClass, _superInterfaces, _keyType, _valueType.withValueHandler(h), in withContentValueHandler()
101 … _superClass, _superInterfaces, _keyType.withStaticTyping(), _valueType.withStaticTyping(), in withStaticTyping()
107 if (_valueType == contentType) { in withContentType()
120 keyType, _valueType, _valueHandler, _typeHandler, _asStatic); in withKeyType()
127 superClass, superInterfaces, _keyType, _valueType, in refine()
141 _superClass, _superInterfaces, _keyType.withTypeHandler(h), _valueType, in withKeyTypeHandler()
[all …]
/external/jackson-databind/attic/
DMappingIteratorDeserializer.java15 protected final JavaType _valueType; field in MappingIteratorDeserializer
25 _valueType = valueType; in MappingIteratorDeserializer()
33 JsonDeserializer<Object> deser = ctxt.findContextualValueDeserializer(_valueType, prop); in createContextual()
35 : new MappingIteratorDeserializer(_valueType, deser); in createContextual()
43 MappingIterator<Object> mit = new MappingIterator<Object>(_valueType, p, ctxt, in deserialize()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/
DMapEntrySerializer.java46 protected final JavaType _entryType, _keyType, _valueType; field in MapEntrySerializer
114 _valueType = valueType; in MapEntrySerializer()
141 _valueType = src._valueType; in MapEntrySerializer()
211 if (_valueTypeIsStatic && !_valueType.isJavaLangObject()) { in createContextual()
212 ser = provider.findContentValueSerializer(_valueType, property); in createContextual()
233 valueToSuppress = BeanUtil.getDefaultValue(_valueType); in createContextual()
243 valueToSuppress = _valueType.isReferenceType() ? MARKER_FOR_EMPTY : null; in createContextual()
287 return _valueType; in getContentType()
385 if (_valueType.hasGenericTypes()) { in serializeDynamic()
387 provider.constructSpecializedType(_valueType, cc), provider); in serializeDynamic()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectReader.java96 protected final JavaType _valueType; field in ObjectReader
185 _valueType = valueType; in ObjectReader()
210 _valueType = valueType; in ObjectReader()
231 _valueType = base._valueType; in ObjectReader()
251 _valueType = base._valueType; in ObjectReader()
266 _valueType = base._valueType; in ObjectReader()
333 return new MappingIterator<T>(_valueType, p, ctxt, in _newIterator()
357 ctxt.reportInputMismatch(_valueType, in _initForReading()
617 _valueType, _rootDeserializer, _valueToUpdate, in with()
704 return _new(this, _config, _valueType, _rootDeserializer, _valueToUpdate, in with()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DMapSerializer.java74 protected final JavaType _valueType; field in MapSerializer
189 _valueType = valueType; in MapSerializer()
233 _valueType = src._valueType; in MapSerializer()
270 _valueType = src._valueType; in MapSerializer()
293 _valueType = src._valueType; in MapSerializer()
508 if (_valueTypeIsStatic && !_valueType.isJavaLangObject()) { in createContextual()
509 ser = provider.findContentValueSerializer(_valueType, property); in createContextual()
570 valueToSuppress = BeanUtil.getDefaultValue(_valueType); in createContextual()
580 valueToSuppress = _valueType.isReferenceType() ? MARKER_FOR_EMPTY : null; in createContextual()
620 return _valueType; in getContentType()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DValueInstantiator.java469 protected final Class<?> _valueType; field in ValueInstantiator.Base
472 _valueType = type; in Base()
476 _valueType = type.getRawClass(); in Base()
481 return _valueType.getName(); in getValueTypeDesc()
486 return _valueType; in getValueClass()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DStdDeserializer.java68 final protected JavaType _valueType; field in StdDeserializer
72 _valueType = null; in StdDeserializer()
78 _valueType = valueType; in StdDeserializer()
89 _valueType = src._valueType; in StdDeserializer()
116 public JavaType getValueType() { return _valueType; } in getValueType()
132 if (_valueType != null) { in getValueType()
133 return _valueType; in getValueType()
DMapDeserializer.java859 private final Class<?> _valueType; field in MapDeserializer.MapReferringAccumulator
867 _valueType = valueType; in MapReferringAccumulator()
883 MapReferring id = new MapReferring(this, reference, _valueType, key); in handleUnresolvedReference()