Home
last modified time | relevance | path

Searched refs:handleUnknownProperty (Results 1 – 11 of 11) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DTestUnknownPropertyDeserialization.java49 public boolean handleUnknownProperty(DeserializationContext ctxt, in handleUnknownProperty() method in TestUnknownPropertyDeserialization.MyHandler
277 …public boolean handleUnknownProperty(DeserializationContext ctxt, JsonParser p, JsonDeserializer<?… in testIssue987()
DProblemHandlerLocation1440Test.java43 public boolean handleUnknownProperty(final DeserializationContext ctxt, final JsonParser p, in handleUnknownProperty() method in ProblemHandlerLocation1440Test.DeserializationProblemLogger
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DStackTraceElementDeserializer.java58 handleUnknownProperty(p, ctxt, _valueClass, propName); in deserialize()
DThrowableDeserializer.java136 handleUnknownProperty(p, ctxt, throwable, propName); in deserializeFromObject()
DStdDeserializer.java1785 protected void handleUnknownProperty(JsonParser p, DeserializationContext ctxt, in handleUnknownProperty() method in StdDeserializer
1793 if (ctxt.handleUnknownProperty(p, this, instanceOrClass, propName)) { in handleUnknownProperty()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DDeserializationProblemHandler.java70 public boolean handleUnknownProperty(DeserializationContext ctxt, JsonParser p, in handleUnknownProperty() method in DeserializationProblemHandler
DBeanDeserializerBase.java1636 handleUnknownProperty(bufferParser, ctxt, bean, propName); in handleUnknownProperties()
1665 handleUnknownProperty(p, ctxt, beanOrBuilder, propName); in handleUnknownVanilla()
1674 protected void handleUnknownProperty(JsonParser p, DeserializationContext ctxt, in handleUnknownProperty() method in BeanDeserializerBase
1687 super.handleUnknownProperty(p, ctxt, beanOrClass, propName); in handleUnknownProperty()
DBeanDeserializer.java993 handleUnknownProperty(p, ctxt, bean, propName); in deserializeWithExternalTypeId()
1077 handleUnknownProperty(p, ctxt, _valueClass, propName); in deserializeUsingPropertyBasedWithExternalTypeId()
DBuilderBasedDeserializer.java809 handleUnknownProperty(p, ctxt, bean, propName); in deserializeWithExternalTypeId()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DObjectReaderTest.java509 …public boolean handleUnknownProperty(DeserializationContext ctxt, JsonParser p, JsonDeserializer<?… in testUnknownFields()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDeserializationContext.java970 public boolean handleUnknownProperty(JsonParser p, JsonDeserializer<?> deser, in handleUnknownProperty() method in DeserializationContext
977 if (h.value().handleUnknownProperty(this, p, deser, instanceOrClass, propName)) { in handleUnknownProperty()