Home
last modified time | relevance | path

Searched refs:_valueInstantiators (Results 1 – 2 of 2) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DDeserializerFactoryConfig.java64 protected final ValueInstantiators[] _valueInstantiators; field in DeserializerFactoryConfig
90 _valueInstantiators = (vi == null) ? NO_VALUE_INSTANTIATORS : vi; in DeserializerFactoryConfig()
106 _abstractTypeResolvers, _valueInstantiators); in withAdditionalDeserializers()
122 _abstractTypeResolvers, _valueInstantiators); in withAdditionalKeyDeserializers()
138 _abstractTypeResolvers, _valueInstantiators); in withDeserializerModifier()
155 all, _valueInstantiators); in withAbstractTypeResolver()
173 … ValueInstantiators[] all = ArrayBuilders.insertInListNoDup(_valueInstantiators, instantiators); in withValueInstantiators()
186 public boolean hasValueInstantiators() { return _valueInstantiators.length > 0; } in hasValueInstantiators()
205 return new ArrayIterator<ValueInstantiators>(_valueInstantiators); in valueInstantiators()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/module/
DSimpleModule.java66 protected SimpleValueInstantiators _valueInstantiators = null; field in SimpleModule
236 _valueInstantiators = svi; in setValueInstantiators()
445 if (_valueInstantiators == null) { in addValueInstantiator()
446 _valueInstantiators = new SimpleValueInstantiators(); in addValueInstantiator()
448 _valueInstantiators = _valueInstantiators.addValueInstantiator(beanType, inst); in addValueInstantiator()
507 if (_valueInstantiators != null) { in setupModule()
508 context.addValueInstantiators(_valueInstantiators); in setupModule()