Class PropertyValue
- java.lang.Object
-
- com.fasterxml.jackson.databind.deser.impl.PropertyValue
-
public abstract class PropertyValue extends java.lang.Object
Base class for property values that need to be buffered during deserialization.
-
-
Field Summary
Fields Modifier and Type Field Description PropertyValue
next
java.lang.Object
value
Value to assign when POJO has been instantiated.
-
Constructor Summary
Constructors Modifier Constructor Description protected
PropertyValue(PropertyValue next, java.lang.Object value)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
assign(java.lang.Object bean)
Method called to assign stored value of this property to specified bean instancevoid
setValue(java.lang.Object parameterObject)
Method called to assign stored value of this property to specified parameter object.
-
-
-
Field Detail
-
next
public final PropertyValue next
-
value
public final java.lang.Object value
Value to assign when POJO has been instantiated.
-
-
Constructor Detail
-
PropertyValue
protected PropertyValue(PropertyValue next, java.lang.Object value)
-
-
Method Detail
-
assign
public abstract void assign(java.lang.Object bean) throws java.io.IOException
Method called to assign stored value of this property to specified bean instance- Throws:
java.io.IOException
-
setValue
public void setValue(java.lang.Object parameterObject) throws java.io.IOException
Method called to assign stored value of this property to specified parameter object.- Throws:
java.io.IOException
- Since:
- 2.18
-
-