java.lang.Object
tools.jackson.databind.deser.bean.PropertyValue
Base class for property values that need to be buffered during
deserialization.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal PropertyValuefinal ObjectValue to assign when POJO has been instantiated. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidassign(DeserializationContext ctxt, Object bean) Method called to assign stored value of this property to specified bean instancevoidsetValue(DeserializationContext ctxt, Object parameterObject) Method called to assign stored value of this property to specified parameter object.
-
Field Details
-
next
-
value
Value to assign when POJO has been instantiated.
-
-
Constructor Details
-
PropertyValue
-
-
Method Details
-
assign
public abstract void assign(DeserializationContext ctxt, Object bean) throws tools.jackson.core.JacksonException Method called to assign stored value of this property to specified bean instance- Throws:
tools.jackson.core.JacksonException
-
setValue
public void setValue(DeserializationContext ctxt, Object parameterObject) throws tools.jackson.core.JacksonException Method called to assign stored value of this property to specified parameter object.- Throws:
tools.jackson.core.JacksonException
-