Class 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
      • Methods inherited from class java.lang.Object

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

      • value

        public final java.lang.Object value
        Value to assign when POJO has been instantiated.
    • 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