Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DBaseSettings.java65 protected final TypeFactory _typeFactory; field in BaseSettings
154 _typeFactory = tf; in BaseSettings()
183 _typeFactory, in copy()
204 return new BaseSettings(ci, _annotationIntrospector, _propertyNamingStrategy, _typeFactory, in withClassIntrospector()
213 return new BaseSettings(_classIntrospector, ai, _propertyNamingStrategy, _typeFactory, in withAnnotationIntrospector()
240 return new BaseSettings(_classIntrospector, _annotationIntrospector, pns, _typeFactory, in withPropertyNamingStrategy()
246 if (_typeFactory == tf) { in withTypeFactory()
258 …ew BaseSettings(_classIntrospector, _annotationIntrospector, _propertyNamingStrategy, _typeFactory, in withTypeResolverBuilder()
272 …ew BaseSettings(_classIntrospector, _annotationIntrospector, _propertyNamingStrategy, _typeFactory, in withDateFormat()
281 …ew BaseSettings(_classIntrospector, _annotationIntrospector, _propertyNamingStrategy, _typeFactory, in withHandlerInstantiator()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DTypeResolutionContext.java21 private final TypeFactory _typeFactory; field in TypeResolutionContext.Basic
25 _typeFactory = tf; in Basic()
35 return _typeFactory.constructType(type); in resolveType()
37 return _typeFactory.constructType(type, _bindings); in resolveType()
DAnnotatedClass.java64 final protected TypeFactory _typeFactory; field in AnnotatedClass
148 _typeFactory = tf; in AnnotatedClass()
176 _typeFactory = null; in AnnotatedClass()
229 return _typeFactory.constructType(type, _bindings); in resolveType()
367 this, _mixInResolver, _typeFactory, _type, _collectAnnotations); in _fields()
384 _mixInResolver, _typeFactory, in _methods()
DAnnotatedFieldCollector.java18 private final TypeFactory _typeFactory; field in AnnotatedFieldCollector
32 _typeFactory = types; in AnnotatedFieldCollector()
71 fields = _findFields(new TypeResolutionContext.Basic(_typeFactory, parent.getBindings()), in _findFields()
/external/jackson-databind/attic/
DTypeBindings.java24 protected final TypeFactory _typeFactory; field in TypeBindings
85 return new TypeBindings(_typeFactory, this, _classStack, _contextClass, _contextType); in childInstance()
91 _typeFactory = tf; in TypeBindings()
105 return _typeFactory._constructType(_classStack, cls, this); in resolveType()
109 return _typeFactory._constructType(_classStack, type, this); in resolveType()
257 _bindings.put(name, _typeFactory._constructType(_classStack, args[i], this)); in _resolveBindings()
285 typeParams = _typeFactory.findTypeParameters(_contextType, raw); in _resolveBindings()
304 … _bindings.put(name, _typeFactory._constructType(_classStack, varType, this)); in _resolveBindings()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectMapper.java389 protected TypeFactory _typeFactory; field in ObjectMapper
575 _typeFactory = src._typeFactory; in ObjectMapper()
630 _typeFactory = TypeFactory.defaultInstance(); in ObjectMapper()
848 return _typeFactory; in registerModule()
935 TypeFactory f = _typeFactory; in registerModule()
2121 return _typeFactory;
2133 _typeFactory = f;
2146 return _typeFactory.constructType(t);
2759 return (T) _readValue(getDeserializationConfig(), p, _typeFactory.constructType(valueType));
2784 … return (T) _readValue(getDeserializationConfig(), p, _typeFactory.constructType(valueTypeRef));
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/
DTypeIdResolverBase.java26 protected final TypeFactory _typeFactory; field in TypeIdResolverBase
39 _typeFactory = typeFactory; in TypeIdResolverBase()
DClassNameIdResolver.java56 return _idFrom(value, value.getClass(), _typeFactory); in idFromValue()
61 return _idFrom(value, type, _typeFactory); in idFromValueAndType()
DTypeNameIdResolver.java122 Class<?> cls = _typeFactory.constructType(clazz).getRawClass(); in idFromClass()