Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DExternalTypeHandler.java228 ctxt.reportPropertyInputMismatch(bean.getClass(), extProp.getName(), in complete()
240 ctxt.reportPropertyInputMismatch(bean.getClass(), prop.getName(), in complete()
273 ctxt.reportPropertyInputMismatch(_beanType, extProp.getProperty().getName(), in complete()
283 ctxt.reportPropertyInputMismatch(_beanType, prop.getName(), in complete()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DDefaultDeserializationContext.java347 reportPropertyInputMismatch(rootType, actualName, in _unwrapAndDeserialize()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDeserializationContext.java1634 public <T> T reportPropertyInputMismatch(Class<?> targetType, String propertyName, in reportPropertyInputMismatch() method in DeserializationContext
1651 public <T> T reportPropertyInputMismatch(JavaType targetType, String propertyName, in reportPropertyInputMismatch() method in DeserializationContext
1654 return reportPropertyInputMismatch(targetType.getRawClass(), propertyName, msg, msgArgs); in reportPropertyInputMismatch()