Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DCollectionLikeType.java22 protected final JavaType _elementType; field in CollectionLikeType
36 _elementType = elemT; in CollectionLikeType()
45 _elementType = elemT; in CollectionLikeType()
96 _superClass, _superInterfaces, _elementType, in _narrow()
102 if (_elementType == contentType) { in withContentType()
112 _superClass, _superInterfaces, _elementType, _valueHandler, h, _asStatic); in withTypeHandler()
119 _superClass, _superInterfaces, _elementType.withTypeHandler(h), in withContentTypeHandler()
126 _superClass, _superInterfaces, _elementType, h, _typeHandler, _asStatic); in withValueHandler()
132 _superClass, _superInterfaces, _elementType.withValueHandler(h), in withContentValueHandler()
141 JavaType ct = _elementType.withHandlersFrom(srcCt); in withHandlersFrom()
[all …]
DCollectionType.java68 _superClass, _superInterfaces, _elementType, null, null, _asStatic); in _narrow()
73 if (_elementType == contentType) { in withContentType()
83 _superClass, _superInterfaces, _elementType, _valueHandler, h, _asStatic); in withTypeHandler()
90 _superClass, _superInterfaces, _elementType.withTypeHandler(h), in withContentTypeHandler()
97 _superClass, _superInterfaces, _elementType, h, _typeHandler, _asStatic); in withValueHandler()
103 _superClass, _superInterfaces, _elementType.withValueHandler(h), in withContentValueHandler()
113 _superClass, _superInterfaces, _elementType.withStaticTyping(), in withStaticTyping()
121 superClass, superInterfaces, _elementType, in refine()
134 return "[collection type; class "+_class.getName()+", contains "+_elementType+"]"; in toString()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DObjectArraySerializer.java37 protected final JavaType _elementType; field in ObjectArraySerializer
65 _elementType = elemType; in ObjectArraySerializer()
75 _elementType = src._elementType; in ObjectArraySerializer()
90 _elementType = src._elementType; in ObjectArraySerializer()
106 return new ObjectArraySerializer(_elementType, _staticTyping, vts, _elementSerializer); in _withValueTypeSerializer()
159 if (_elementType != null) { in createContextual()
160 if (_staticTyping && !_elementType.isJavaLangObject()) { in createContextual()
161 ser = serializers.findContentValueSerializer(_elementType, property); in createContextual()
176 return _elementType; in getContentType()
245 if (_elementType.hasGenericTypes()) { in serializeContents()
[all …]
DAsArraySerializerBase.java30 protected final JavaType _elementType; field in AsArraySerializerBase
80 _elementType = et; in AsArraySerializerBase()
100 _elementType = et; in AsArraySerializerBase()
116 _elementType = src._elementType; in AsArraySerializerBase()
199 if (_elementType != null) { in createContextual()
200 if (_staticTyping && !_elementType.isJavaLangObject()) { in createContextual()
201 ser = serializers.findContentValueSerializer(_elementType, property); in createContextual()
222 return _elementType; in getContentType()
294 if (_elementType != null) { in acceptJsonFormatVisitor()
295 … valueSer = visitor.getProvider().findContentValueSerializer(_elementType, _property); in acceptJsonFormatVisitor()
[all …]
DCollectionSerializer.java136 if (_elementType.hasGenericTypes()) { in serializeContents()
138 provider.constructSpecializedType(_elementType, cc), provider); in serializeContents()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/
DIndexedListSerializer.java111 if (_elementType.hasGenericTypes()) { in serializeContents()
113 provider.constructSpecializedType(_elementType, cc), provider); in serializeContents()
173 if (_elementType.hasGenericTypes()) { in serializeTypedContents()
175 provider.constructSpecializedType(_elementType, cc), provider); in serializeTypedContents()
DIteratorSerializer.java110 if (_elementType.hasGenericTypes()) { in _serializeDynamicContents()
112 provider.constructSpecializedType(_elementType, cc), provider); in _serializeDynamicContents()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DCollectionDeserializer.java430 private final Class<?> _elementType; field in CollectionDeserializer.CollectionReferringAccumulator
439 _elementType = elementType; in CollectionReferringAccumulator()
455 CollectionReferring id = new CollectionReferring(this, reference, _elementType); in handleUnresolvedReference()