Class PropertyValue
- java.lang.Object
-
- com.fasterxml.jackson.databind.deser.impl.PropertyValue
-
public abstract class PropertyValue extends java.lang.ObjectBase class for property values that need to be buffered during deserialization.
-
-
Field Summary
Fields Modifier and Type Field Description PropertyValuenextjava.lang.ObjectvalueValue to assign when POJO has been instantiated.
-
Constructor Summary
Constructors Modifier Constructor Description protectedPropertyValue(PropertyValue next, java.lang.Object value)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidassign(java.lang.Object bean)Method called to assign stored value of this property to specified bean instancevoidsetValue(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.IOExceptionMethod 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.IOExceptionMethod called to assign stored value of this property to specified parameter object.- Throws:
java.io.IOException- Since:
- 2.18
-
-