Uses of Class
com.fasterxml.jackson.databind.deser.impl.ReadableObjectId
Packages that use ReadableObjectId
Package
Description
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.Contains implementation classes of deserialization part of
data binding.
-
Uses of ReadableObjectId in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return ReadableObjectIdModifier and TypeMethodDescriptionabstract ReadableObjectIdDeserializationContext.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 -
Uses of ReadableObjectId in com.fasterxml.jackson.databind.deser
Fields in com.fasterxml.jackson.databind.deser with type parameters of type ReadableObjectIdModifier and TypeFieldDescriptionprotected LinkedHashMap<com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey, ReadableObjectId> DefaultDeserializationContext._objectIdsMethods in com.fasterxml.jackson.databind.deser that return ReadableObjectIdModifier and TypeMethodDescriptionprotected ReadableObjectIdDefaultDeserializationContext.createReadableObjectId(com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey key) Overridable factory method to create a new instance of ReadableObjectId or its subclass.DefaultDeserializationContext.findObjectId(Object id, com.fasterxml.jackson.annotation.ObjectIdGenerator<?> gen, com.fasterxml.jackson.annotation.ObjectIdResolver resolverType) UnresolvedForwardReference.getRoid()Methods in com.fasterxml.jackson.databind.deser with parameters of type ReadableObjectIdModifier and TypeMethodDescriptionprotected booleanDefaultDeserializationContext.tryToResolveUnresolvedObjectId(ReadableObjectId roid) Overridable helper method called to try to resolve otherwise unresolvableReadableObjectId; and if this succeeds, returntrueto indicate problem has been resolved in some way, so that caller can avoid reporting it as an error.Constructors in com.fasterxml.jackson.databind.deser with parameters of type ReadableObjectIdModifierConstructorDescriptionUnresolvedForwardReference(com.fasterxml.jackson.core.JsonParser p, String msg, com.fasterxml.jackson.core.JsonLocation loc, ReadableObjectId roid)