Home
last modified time | relevance | path

Searched refs:_superInterfaces (Results 1 – 7 of 7) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
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()
110 return new MapType(_class, _bindings, _superClass, _superInterfaces, in withContentType()
119 return new MapType(_class, _bindings, _superClass, _superInterfaces, in withKeyType()
141 _superClass, _superInterfaces, _keyType.withTypeHandler(h), _valueType, in withKeyTypeHandler()
148 _superClass, _superInterfaces, _keyType.withValueHandler(h), _valueType, in withKeyValueHandler()
DTypeBase.java24 protected final JavaType[] _superInterfaces; field in TypeBase
50 _superInterfaces = superInts; in TypeBase()
61 _superInterfaces = base._superInterfaces; in TypeBase()
113 if (_superInterfaces == null) { in getInterfaces()
116 switch (_superInterfaces.length) { in getInterfaces()
120 return Collections.singletonList(_superInterfaces[0]); in getInterfaces()
122 return Arrays.asList(_superInterfaces); in getInterfaces()
132 if (rawTarget.isInterface() && (_superInterfaces != null)) { in findSuperType()
133 for (int i = 0, count = _superInterfaces.length; i < count; ++i) { in findSuperType()
134 JavaType type = _superInterfaces[i].findSuperType(rawTarget); in findSuperType()
DCollectionType.java68 _superClass, _superInterfaces, _elementType, null, null, _asStatic); in _narrow()
76 return new CollectionType(_class, _bindings, _superClass, _superInterfaces, 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()
DMapLikeType.java94 _superInterfaces, _keyType, _valueType, _valueHandler, in _narrow()
106 _superInterfaces, keyType, _valueType, _valueHandler, in withKeyType()
116 _superInterfaces, _keyType, contentType, _valueHandler, 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()
177 _superInterfaces, _keyType, _valueType.withStaticTyping(), in withStaticTyping()
267 _superInterfaces, _keyType.withTypeHandler(h), _valueType, in withKeyTypeHandler()
273 _superInterfaces, _keyType.withValueHandler(h), _valueType, in withKeyValueHandler()
DReferenceType.java98 return new ReferenceType(_class, _bindings, _superClass, _superInterfaces, in withContentType()
108 return new ReferenceType(_class, _bindings, _superClass, _superInterfaces, in withTypeHandler()
118 return new ReferenceType(_class, _bindings, _superClass, _superInterfaces, in withContentTypeHandler()
129 _superClass, _superInterfaces, _referencedType, _anchorType, in withValueHandler()
140 _superClass, _superInterfaces, refdType, _anchorType, in withContentValueHandler()
149 return new ReferenceType(_class, _bindings, _superClass, _superInterfaces, in withStaticTyping()
185 _superClass, _superInterfaces, _referencedType, _anchorType, in _narrow()
DCollectionLikeType.java96 _superClass, _superInterfaces, _elementType, in _narrow()
105 return new CollectionLikeType(_class, _bindings, _superClass, _superInterfaces, 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()
155 _superClass, _superInterfaces, _elementType.withStaticTyping(), in withStaticTyping()
DSimpleType.java137 return new SimpleType(subclass, _bindings, this, _superInterfaces, in _narrow()
144 _superInterfaces, _valueHandler, _typeHandler, _asStatic); in _narrow()
179 …return new SimpleType(_class, _bindings, _superClass, _superInterfaces, _valueHandler, h, _asStati… in withTypeHandler()
193 …return new SimpleType(_class, _bindings, _superClass, _superInterfaces, h, _typeHandler, _asStatic… in withValueHandler()
205 _superClass, _superInterfaces, _valueHandler, _typeHandler, true); in withStaticTyping()