Class PropertyValue

java.lang.Object
com.fasterxml.jackson.databind.deser.impl.PropertyValue

public abstract class PropertyValue extends Object
Base class for property values that need to be buffered during deserialization.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
     
    final Object
    Value to assign when POJO has been instantiated.
  • Method Summary

    Modifier and Type
    Method
    Description
    abstract void
    assign(Object bean)
    Method called to assign stored value of this property to specified bean instance
    void
    setValue(Object parameterObject)
    Method called to assign stored value of this property to specified parameter object.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • next

      public final PropertyValue next
    • value

      public final Object value
      Value to assign when POJO has been instantiated.
  • Method Details

    • assign

      public abstract void assign(Object bean) throws IOException
      Method called to assign stored value of this property to specified bean instance
      Throws:
      IOException
    • setValue

      public void setValue(Object parameterObject) throws IOException
      Method called to assign stored value of this property to specified parameter object.
      Throws:
      IOException
      Since:
      2.18