Interface SingleValueConverter

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object fromString​(java.lang.String str)
      Unmarshals an Object from its single value representation.
      java.lang.String toString​(java.lang.Object obj)
      Marshals an Object into a single value representation.
    • Method Detail

      • toString

        java.lang.String toString​(java.lang.Object obj)
        Marshals an Object into a single value representation.
        Parameters:
        obj - the Object to be converted
        Returns:
        a String with the single value of the Object or null
      • fromString

        java.lang.Object fromString​(java.lang.String str)
        Unmarshals an Object from its single value representation.
        Parameters:
        str - the String with the single value of the Object
        Returns:
        the Object