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,
com.fasterxml.jackson.annotation.ObjectIdGenerator<?> generator)
Deprecated.
|
abstract ReadableObjectId |
DeserializationContext.findObjectId(Object id,
com.fasterxml.jackson.annotation.ObjectIdGenerator<?> generator,
com.fasterxml.jackson.annotation.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<com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey,ReadableObjectId> |
DefaultDeserializationContext._objectIds |
Modifier and Type | Method and Description |
---|---|
ReadableObjectId |
DefaultDeserializationContext.findObjectId(Object id,
com.fasterxml.jackson.annotation.ObjectIdGenerator<?> gen)
Deprecated.
|
ReadableObjectId |
DefaultDeserializationContext.findObjectId(Object id,
com.fasterxml.jackson.annotation.ObjectIdGenerator<?> gen,
com.fasterxml.jackson.annotation.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(String msg,
com.fasterxml.jackson.core.JsonLocation loc,
ReadableObjectId roid) |
Copyright © 2014–2015 FasterXML. All rights reserved.