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.
-
Method Summary
All Methods Instance Methods Abstract 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 instance
-
-
-
Field Detail
-
next
public final PropertyValue next
-
value
public final java.lang.Object value
Value to assign when POJO has been instantiated.
-
-