Interface RuntimeDelegate.HeaderDelegate<T>

    • Method Detail

      • fromString

        T fromString​(String value)
        Parse the supplied value and create an instance of T.
        Parameters:
        value - the string value.
        Returns:
        the newly created instance of T.
        Throws:
        IllegalArgumentException - if the supplied string cannot be parsed or is null.
      • toString

        String toString​(T value)
        Convert the supplied value to a String.
        Parameters:
        value - the value of type T.
        Returns:
        a String representation of the value.
        Throws:
        IllegalArgumentException - if the supplied object cannot be serialized or is null.