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 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 ReadableObjectId Modifier and Type Field Description protected LinkedHashMap<com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey,ReadableObjectId>DefaultDeserializationContext. _objectIdsMethods in com.fasterxml.jackson.databind.deser that return ReadableObjectId Modifier and Type Method Description protected ReadableObjectIdDefaultDeserializationContext. createReadableObjectId(com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey key)Overridable factory method to create a new instance of ReadableObjectId or its subclass.ReadableObjectIdDefaultDeserializationContext. findObjectId(Object id, com.fasterxml.jackson.annotation.ObjectIdGenerator<?> gen, com.fasterxml.jackson.annotation.ObjectIdResolver resolverType)ReadableObjectIdUnresolvedForwardReference. getRoid()Methods in com.fasterxml.jackson.databind.deser with parameters of type ReadableObjectId Modifier and Type Method Description protected 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 ReadableObjectId Constructor Description UnresolvedForwardReference(com.fasterxml.jackson.core.JsonParser p, String msg, com.fasterxml.jackson.core.JsonLocation loc, ReadableObjectId roid)UnresolvedForwardReference(String msg, com.fasterxml.jackson.core.JsonLocation loc, ReadableObjectId roid)Deprecated.Since 2.7
-