Interface Format<T>

    • Method Detail

      • format

        String format​(T object)
               throws Exception
        Formats the object into a String
        Parameters:
        object - the object
        Returns:
        formatted as a String
        Throws:
        Exception - can be thrown
      • parse

        T parse​(String string)
         throws Exception
        Parses a String into an object
        Parameters:
        string - the string
        Returns:
        T the object
        Throws:
        Exception - can be thrown