Uses of Class
com.fasterxml.jackson.databind.deser.UnresolvedForwardReference
-
Packages that use UnresolvedForwardReference 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.com.fasterxml.jackson.databind.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces.com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses. -
-
Uses of UnresolvedForwardReference in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that throw UnresolvedForwardReference Modifier and Type Method Description abstract void
DeserializationContext. checkUnresolvedObjectId()
Method called to ensure that every object id encounter during processing are resolved. -
Uses of UnresolvedForwardReference in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser with parameters of type UnresolvedForwardReference Modifier and Type Method Description private BeanDeserializer.BeanReferring
BeanDeserializer. handleUnresolvedReference(DeserializationContext ctxt, SettableBeanProperty prop, PropertyValueBuffer buffer, UnresolvedForwardReference reference)
Methods in com.fasterxml.jackson.databind.deser that throw UnresolvedForwardReference Modifier and Type Method Description void
DefaultDeserializationContext. checkUnresolvedObjectId()
Constructors in com.fasterxml.jackson.databind.deser with parameters of type UnresolvedForwardReference Constructor Description AnySetterReferring(SettableAnyProperty parent, UnresolvedForwardReference reference, java.lang.Class<?> type, java.lang.Object instance, java.lang.String propName)
BeanReferring(DeserializationContext ctxt, UnresolvedForwardReference ref, JavaType valueType, PropertyValueBuffer buffer, SettableBeanProperty prop)
-
Uses of UnresolvedForwardReference in com.fasterxml.jackson.databind.deser.impl
Fields in com.fasterxml.jackson.databind.deser.impl declared as UnresolvedForwardReference Modifier and Type Field Description private UnresolvedForwardReference
ReadableObjectId.Referring. _reference
Constructors in com.fasterxml.jackson.databind.deser.impl with parameters of type UnresolvedForwardReference Constructor Description PropertyReferring(ObjectIdReferenceProperty parent, UnresolvedForwardReference ref, java.lang.Class<?> type, java.lang.Object ob)
Referring(UnresolvedForwardReference ref, JavaType beanType)
Referring(UnresolvedForwardReference ref, java.lang.Class<?> beanType)
-
Uses of UnresolvedForwardReference in com.fasterxml.jackson.databind.deser.std
Methods in com.fasterxml.jackson.databind.deser.std with parameters of type UnresolvedForwardReference Modifier and Type Method Description ReadableObjectId.Referring
CollectionDeserializer.CollectionReferringAccumulator. handleUnresolvedReference(UnresolvedForwardReference reference)
private void
MapDeserializer. handleUnresolvedReference(DeserializationContext ctxt, MapDeserializer.MapReferringAccumulator accumulator, java.lang.Object key, UnresolvedForwardReference reference)
ReadableObjectId.Referring
MapDeserializer.MapReferringAccumulator. handleUnresolvedReference(UnresolvedForwardReference reference, java.lang.Object key)
Constructors in com.fasterxml.jackson.databind.deser.std with parameters of type UnresolvedForwardReference Constructor Description CollectionReferring(CollectionDeserializer.CollectionReferringAccumulator parent, UnresolvedForwardReference reference, java.lang.Class<?> contentType)
MapReferring(MapDeserializer.MapReferringAccumulator parent, UnresolvedForwardReference ref, java.lang.Class<?> valueType, java.lang.Object key)
-