Class StringConverterFactory.StringStringConverter

    • Constructor Detail

      • StringStringConverter

        public StringStringConverter()
    • Method Detail

      • toString

        public String toString​(Object obj)
        Description copied from interface: StringConverter
        Converts the specified object to a String representation and returns that representation. The represenation should be such that fromString can recreate the Object.
        Specified by:
        toString in interface StringConverter
        Parameters:
        obj - the Object to convert.
        Returns:
        a String representation of the Object.
      • fromString

        public Object fromString​(String strRep)
        Description copied from interface: StringConverter
        Creates an Object from a String representation.
        Specified by:
        fromString in interface StringConverter
        Parameters:
        strRep - the string representation
        Returns:
        the created Object.