Home
last modified time | relevance | path

Searched refs:ValueInstantiator (Results 1 – 25 of 36) sorted by relevance

12

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/module/
DSimpleValueInstantiators.java7 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
21 protected HashMap<ClassKey,ValueInstantiator> _classMappings;
31 _classMappings = new HashMap<ClassKey,ValueInstantiator>(); in SimpleValueInstantiators()
35 ValueInstantiator inst) in addValueInstantiator()
42 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator()
43 BeanDescription beanDesc, ValueInstantiator defaultInstantiator) in findValueInstantiator()
45 ValueInstantiator inst = _classMappings.get(new ClassKey(beanDesc.getBeanClass())); in findValueInstantiator()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DValueInstantiators.java31 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator()
32 BeanDescription beanDesc, ValueInstantiator defaultInstantiator); in findValueInstantiator()
42 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in findValueInstantiator()
43 BeanDescription beanDesc, ValueInstantiator defaultInstantiator) { in findValueInstantiator()
DValueInstantiator.java35 public abstract class ValueInstantiator class
47 public ValueInstantiator getValueInstantiator(); in getValueInstantiator()
70 public ValueInstantiator createContextual(DeserializationContext ctxt, BeanDescription beanDesc) in createContextual()
464 public static class Base extends ValueInstantiator
496 public static class Delegating extends ValueInstantiator
501 protected final ValueInstantiator _delegate;
503 protected Delegating(ValueInstantiator delegate) { in Delegating()
508 … public ValueInstantiator createContextual(DeserializationContext ctxt, BeanDescription beanDesc) in createContextual()
511 ValueInstantiator d = _delegate.createContextual(ctxt, beanDesc); in createContextual()
515 protected ValueInstantiator delegate() { return _delegate; } in delegate()
DBeanDeserializerBuilder.java85 protected ValueInstantiator _valueInstantiator;
286 public void setValueInstantiator(ValueInstantiator inst) { in setValueInstantiator()
333 public ValueInstantiator getValueInstantiator() { in getValueInstantiator()
DBasicDeserializerFactory.java209 public ValueInstantiator findValueInstantiator(DeserializationContext ctxt, in findValueInstantiator()
215 ValueInstantiator instantiator = null; in findValueInstantiator()
254 protected ValueInstantiator _constructDefaultValueInstantiator(DeserializationContext ctxt, in _constructDefaultValueInstantiator()
317 public ValueInstantiator _valueInstantiatorInstance(DeserializationConfig config, in _valueInstantiatorInstance()
325 ValueInstantiator inst; in _valueInstantiatorInstance()
327 if (instDef instanceof ValueInstantiator) { in _valueInstantiatorInstance()
328 return (ValueInstantiator) instDef; in _valueInstantiatorInstance()
339 if (!ValueInstantiator.class.isAssignableFrom(instClass)) { in _valueInstantiatorInstance()
350 return (ValueInstantiator) ClassUtil.createInstance(instClass, in _valueInstantiatorInstance()
1222 ValueInstantiator inst = findValueInstantiator(ctxt, beanDesc); in createCollectionDeserializer()
[all …]
DAbstractDeserializer.java272 ValueInstantiator bogus = new ValueInstantiator.Base(_baseType); in deserialize()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DJDKValueInstantiators.java14 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
26 public static ValueInstantiator findStdValueInstantiator(DeserializationConfig config, in findStdValueInstantiator()
59 extends ValueInstantiator.Base
82 extends ValueInstantiator.Base
106 extends ValueInstantiator.Base
130 extends ValueInstantiator.Base
DPropertyBasedCreator.java10 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
32 protected final ValueInstantiator _valueInstantiator;
54 ValueInstantiator valueInstantiator, in PropertyBasedCreator()
102 ValueInstantiator valueInstantiator, SettableBeanProperty[] srcCreatorProps, in construct()
135 ValueInstantiator valueInstantiator, SettableBeanProperty[] srcCreatorProps, in construct()
154 ValueInstantiator valueInstantiator, SettableBeanProperty[] srcCreatorProps) in construct()
DCreatorCollector.java9 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
85 public ValueInstantiator constructValueInstantiator(DeserializationContext ctxt) in constructValueInstantiator()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DArrayBlockingQueueDeserializer.java10 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
31 ValueInstantiator valueInstantiator) in ArrayBlockingQueueDeserializer()
41 ValueInstantiator valueInstantiator, in ArrayBlockingQueueDeserializer()
DReferenceTypeDeserializer.java10 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
35 protected final ValueInstantiator _valueInstantiator;
47 public ReferenceTypeDeserializer(JavaType fullType, ValueInstantiator vi, in ReferenceTypeDeserializer()
157 public ValueInstantiator getValueInstantiator() { return _valueInstantiator; } in getValueInstantiator()
DStringCollectionDeserializer.java12 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
42 protected final ValueInstantiator _valueInstantiator;
59 JsonDeserializer<?> valueDeser, ValueInstantiator valueInstantiator) in StringCollectionDeserializer()
66 ValueInstantiator valueInstantiator, JsonDeserializer<?> delegateDeser, in StringCollectionDeserializer()
159 public ValueInstantiator getValueInstantiator() { in getValueInstantiator()
DContainerDeserializerBase.java9 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
22 implements ValueInstantiator.Gettable // since 2.9
138 ValueInstantiator vi = getValueInstantiator(); in getEmptyValue()
DFactoryBasedEnumDeserializer.java12 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
37 protected final ValueInstantiator _valueInstantiator;
48 ValueInstantiator valueInstantiator, SettableBeanProperty[] creatorProps) in FactoryBasedEnumDeserializer()
113 public ValueInstantiator getValueInstantiator() { return _valueInstantiator; } in getValueInstantiator()
DAtomicReferenceDeserializer.java6 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
23 public AtomicReferenceDeserializer(JavaType fullType, ValueInstantiator inst, in AtomicReferenceDeserializer()
DJsonLocationInstantiator.java11 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
19 extends ValueInstantiator.Base
DEnumMapDeserializer.java12 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
49 protected final ValueInstantiator _valueInstantiator;
74 public EnumMapDeserializer(JavaType mapType, ValueInstantiator valueInst, in EnumMapDeserializer()
221 public ValueInstantiator getValueInstantiator() { in getValueInstantiator()
DCollectionDeserializer.java50 protected final ValueInstantiator _valueInstantiator;
72 TypeDeserializer valueTypeDeser, ValueInstantiator valueInstantiator) in CollectionDeserializer()
84 ValueInstantiator valueInstantiator, JsonDeserializer<Object> delegateDeser, in CollectionDeserializer()
222 public ValueInstantiator getValueInstantiator() { in getValueInstantiator()
DEnumDeserializer.java13 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
104 ValueInstantiator valueInstantiator, SettableBeanProperty[] creatorProps) in deserializerForCreator()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/annotation/
DJsonValueInstantiator.java8 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
22 public Class<? extends ValueInstantiator> value(); in value()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DHandlerInstantiator.java6 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
113 public ValueInstantiator valueInstantiatorInstance(MapperConfig<?> config, in valueInstantiatorInstance()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/
DTestValueInstantiator.java50 static abstract class InstantiatorBase extends ValueInstantiator.Base
162 static class MyDelegateBeanInstantiator extends ValueInstantiator.Base
199 static class MyDelegateListInstantiator extends ValueInstantiator.Base
238 static class MyDelegateMapInstantiator extends ValueInstantiator.Base
290 public MyModule(Class<?> cls, ValueInstantiator inst) in MyModule()
DTestCustomValueInstDefaults.java9 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
243 public ValueInstantiator findValueInstantiator( in findValueInstantiator()
246 ValueInstantiator defaultInstantiator) in findValueInstantiator()
359 public ValueInstantiator findValueInstantiator(DeserializationConfig config, in setupModule()
360 BeanDescription beanDesc, ValueInstantiator defaultInstantiator) { in setupModule()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/node/
DNodeContext2049Test.java38 static class ListValueInstantiator extends ValueInstantiator {
112 ValueInstantiator instantiator = new ListValueInstantiator(); in createContextual()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DProblemHandlerTest.java12 import com.fasterxml.jackson.databind.deser.ValueInstantiator;
120 Class<?> instClass, ValueInstantiator inst, JsonParser p, String msg) in handleMissingInstantiator()

12