Interface StringRepresentableType<T>

    • Method Detail

      • toString

        String toString​(T value)
                 throws HibernateException
        Render the value to the string representation.
        Parameters:
        value - The value to render to string.
        Returns:
        The string representation
        Throws:
        HibernateException - Problem rendering
      • fromStringValue

        T fromStringValue​(String string)
                   throws HibernateException
        Consume the given string representation back into this types java form.
        Parameters:
        string - The string representation to be consumed.
        Returns:
        The java type representation
        Throws:
        HibernateException - Problem consuming