Class PropertyValue

java.lang.Object
tools.jackson.databind.deser.bean.PropertyValue

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

    • next

      public final PropertyValue next
    • value

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

  • 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