Uses of Class
com.fasterxml.jackson.databind.deser.impl.ReadableObjectId
-
Packages that use ReadableObjectId 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. -
-
Uses of ReadableObjectId in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return ReadableObjectId Modifier and Type Method Description abstract ReadableObjectId
DeserializationContext. findObjectId(java.lang.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 ReadableObjectId Modifier and Type Field Description protected java.util.LinkedHashMap<com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey,ReadableObjectId>
DefaultDeserializationContext. _objectIds
Methods in com.fasterxml.jackson.databind.deser that return ReadableObjectId Modifier and Type Method Description protected ReadableObjectId
DefaultDeserializationContext. createReadableObjectId(com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey key)
Overridable factory method to create a new instance of ReadableObjectId or its subclass.ReadableObjectId
DefaultDeserializationContext. findObjectId(java.lang.Object id, com.fasterxml.jackson.annotation.ObjectIdGenerator<?> gen, com.fasterxml.jackson.annotation.ObjectIdResolver resolverType)
ReadableObjectId
UnresolvedForwardReference. getRoid()
Methods in com.fasterxml.jackson.databind.deser with parameters of type ReadableObjectId Modifier and Type Method Description protected boolean
DefaultDeserializationContext. tryToResolveUnresolvedObjectId(ReadableObjectId roid)
Overridable helper method called to try to resolve otherwise unresolvableReadableObjectId
; and if this succeeds, returntrue
to 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 ReadableObjectId Constructor Description UnresolvedForwardReference(com.fasterxml.jackson.core.JsonParser p, java.lang.String msg, com.fasterxml.jackson.core.JsonLocation loc, ReadableObjectId roid)
UnresolvedForwardReference(java.lang.String msg, com.fasterxml.jackson.core.JsonLocation loc, ReadableObjectId roid)
Deprecated.Since 2.7
-