Searched refs:extraDesc (Results 1 – 4 of 4) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ |
D | TypeDeserializerBase.java | 284 String extraDesc = _idResolver.getDescForKnownTypeIds(); in _handleUnknownTypeId() local 285 if (extraDesc == null) { in _handleUnknownTypeId() 286 extraDesc = "type ids are not statically known"; in _handleUnknownTypeId() 288 extraDesc = "known type ids = " + extraDesc; in _handleUnknownTypeId() 291 extraDesc = String.format("%s (for POJO property '%s')", extraDesc, in _handleUnknownTypeId() 294 return ctxt.handleUnknownTypeId(_baseType, typeId, _idResolver, extraDesc); in _handleUnknownTypeId() 300 protected JavaType _handleMissingTypeId(DeserializationContext ctxt, String extraDesc) in _handleMissingTypeId() argument 303 return ctxt.handleMissingTypeId(_baseType, _idResolver, extraDesc); in _handleMissingTypeId()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | DeserializationContext.java | 1402 TypeIdResolver idResolver, String extraDesc) throws IOException in handleUnknownTypeId() argument 1407 … JavaType type = h.value().handleUnknownTypeId(this, baseType, id, idResolver, extraDesc); in handleUnknownTypeId() 1426 throw invalidTypeIdException(baseType, id, extraDesc); in handleUnknownTypeId() 1433 TypeIdResolver idResolver, String extraDesc) throws IOException in handleMissingTypeId() argument 1438 JavaType type = h.value().handleMissingTypeId(this, baseType, idResolver, extraDesc); in handleMissingTypeId() 1458 throw missingTypeIdException(baseType, extraDesc); in handleMissingTypeId() 1916 String extraDesc) { in invalidTypeIdException() argument 1919 return InvalidTypeIdException.from(_parser, _colonConcat(msg, extraDesc), baseType, typeId); in invalidTypeIdException() 1926 String extraDesc) { in missingTypeIdException() argument 1929 return InvalidTypeIdException.from(_parser, _colonConcat(msg, extraDesc), baseType, null); in missingTypeIdException() [all …]
|
D | DatabindContext.java | 303 String extraDesc); in invalidTypeIdException() argument
|
D | SerializerProvider.java | 1314 String extraDesc) { in invalidTypeIdException() argument 1317 return InvalidTypeIdException.from(null, _colonConcat(msg, extraDesc), baseType, typeId); in invalidTypeIdException()
|