Package | Description |
---|---|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
com.fasterxml.jackson.databind.deser |
Contains implementation classes of deserialization part of
data binding.
|
Modifier and Type | Method and Description |
---|---|
abstract ReadableObjectId |
DeserializationContext.findObjectId(Object id,
ObjectIdGenerator<?> generator,
ObjectIdResolver resolver)
Method called to find and return entry corresponding to given
Object Id: will add an entry if necessary, and never returns null
|
Modifier and Type | Field and Description |
---|---|
protected LinkedHashMap<ObjectIdGenerator.IdKey,ReadableObjectId> |
DefaultDeserializationContext._objectIds |
Modifier and Type | Method and Description |
---|---|
protected ReadableObjectId |
DefaultDeserializationContext.createReadableObjectId(ObjectIdGenerator.IdKey key)
Overridable factory method to create a new instance of ReadableObjectId or its
subclass.
|
ReadableObjectId |
DefaultDeserializationContext.findObjectId(Object id,
ObjectIdGenerator<?> gen,
ObjectIdResolver resolverType) |
ReadableObjectId |
UnresolvedForwardReference.getRoid() |
Modifier and Type | Method and Description |
---|---|
protected boolean |
DefaultDeserializationContext.tryToResolveUnresolvedObjectId(ReadableObjectId roid)
Overridable helper method called to try to resolve otherwise unresolvable
ReadableObjectId ;
and if this succeeds, return true to indicate problem has been resolved in
some way, so that caller can avoid reporting it as an error. |
Constructor and Description |
---|
UnresolvedForwardReference(JsonParser p,
String msg,
JsonLocation loc,
ReadableObjectId roid) |
UnresolvedForwardReference(String msg,
JsonLocation loc,
ReadableObjectId roid)
Deprecated.
Since 2.7
|
Copyright © 2008–2021 FasterXML. All rights reserved.