Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DValueInstantiators.java31 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator() method
42 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator() method in ValueInstantiators.Base
DDeserializerFactory.java100 public abstract ValueInstantiator findValueInstantiator(DeserializationContext ctxt, in findValueInstantiator() method in DeserializerFactory
DBasicDeserializerFactory.java209 public ValueInstantiator findValueInstantiator(DeserializationContext ctxt, in findValueInstantiator() method in BasicDeserializerFactory
218 Object instDef = ctxt.getAnnotationIntrospector().findValueInstantiator(ac); in findValueInstantiator()
234 instantiator = insts.findValueInstantiator(config, beanDesc, instantiator); in findValueInstantiator()
1222 ValueInstantiator inst = findValueInstantiator(ctxt, beanDesc); in createCollectionDeserializer()
1335 inst = findValueInstantiator(ctxt, beanDesc); in createMapDeserializer()
1378 ValueInstantiator inst = findValueInstantiator(ctxt, beanDesc); in createMapDeserializer()
1568 inst = findValueInstantiator(ctxt, beanDesc); in createReferenceDeserializer()
DBeanDeserializerFactory.java253 valueInstantiator = findValueInstantiator(ctxt, beanDesc); in buildBeanDeserializer()
312 valueInstantiator = findValueInstantiator(ctxt, builderDesc); in buildBuilderBasedDeserializer()
409 builder.setValueInstantiator(findValueInstantiator(ctxt, beanDesc)); in buildThrowableDeserializer()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/module/
DSimpleValueInstantiators.java42 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator() method in SimpleValueInstantiators
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotationIntrospectorPair.java752 public Object findValueInstantiator(AnnotatedClass ac) { in findValueInstantiator() method in AnnotationIntrospectorPair
753 Object result = _primary.findValueInstantiator(ac); in findValueInstantiator()
754 return (result == null) ? _secondary.findValueInstantiator(ac) : result; in findValueInstantiator()
DJacksonAnnotationIntrospector.java1260 public Object findValueInstantiator(AnnotatedClass ac) in findValueInstantiator() method in JacksonAnnotationIntrospector
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/
DTestCustomValueInstDefaults.java243 public ValueInstantiator findValueInstantiator( in findValueInstantiator() method in TestCustomValueInstDefaults.BucketInstantiators
359 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in setupModule()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DAnnotationIntrospector.java1285 public Object findValueInstantiator(AnnotatedClass ac) { in findValueInstantiator() method in AnnotationIntrospector