Home
last modified time | relevance | path

Searched refs:NullsFailProvider (Results 1 – 3 of 3) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DNullsFailProvider.java12 public class NullsFailProvider class
20 protected NullsFailProvider(PropertyName name, JavaType type) { in NullsFailProvider() method in NullsFailProvider
25 public static NullsFailProvider constructForProperty(BeanProperty prop) { in constructForProperty()
30 public static NullsFailProvider constructForProperty(BeanProperty prop, JavaType type) { in constructForProperty()
31 return new NullsFailProvider(prop.getFullName(), type); in constructForProperty()
34 public static NullsFailProvider constructForRootValue(JavaType t) { in constructForRootValue()
35 return new NullsFailProvider(null, t); in constructForRootValue()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DPrimitiveArrayDeserializers.java15 import com.fasterxml.jackson.databind.deser.impl.NullsFailProvider;
115 …nuller = NullsFailProvider.constructForRootValue(ctxt.constructType(_valueClass.getComponentType()… in createContextual()
118 … nuller = NullsFailProvider.constructForProperty(property, property.getType().getContentType()); in createContextual()
DStdDeserializer.java24 import com.fasterxml.jackson.databind.deser.impl.NullsFailProvider;
1679 return NullsFailProvider.constructForRootValue(type); in findContentNullProvider()
1681 return NullsFailProvider.constructForProperty(prop, prop.getType().getContentType()); in findContentNullProvider()
1707 … return NullsFailProvider.constructForRootValue(ctxt.constructType(valueDeser.handledType())); in _findNullProvider()
1709 return NullsFailProvider.constructForProperty(prop); in _findNullProvider()