TPTP 4.1.0 Platform Project
Public API Specification

org.eclipse.tptp.platform.analysis.util.converter
Interface IStringConverter

All Superinterfaces:
IObjectConverter
All Known Implementing Classes:
StringConverter

public interface IStringConverter
extends IObjectConverter

IStringConverter


Method Summary
 java.lang.Object fromString(java.lang.String s)
          Convert the string to an object.
 java.lang.String toString(java.lang.Object o)
          Convert an object to a string.
 
Methods inherited from interface org.eclipse.tptp.platform.analysis.util.converter.IObjectConverter
convert
 

Method Detail

toString

public java.lang.String toString(java.lang.Object o)
                          throws java.lang.IllegalArgumentException
Convert an object to a string.

Parameters:
o -
Returns:
Throws:
java.lang.IllegalArgumentException

fromString

public java.lang.Object fromString(java.lang.String s)
                            throws java.lang.UnsupportedOperationException,
                                   java.lang.IllegalArgumentException
Convert the string to an object.

Parameters:
s -
Returns:
Throws:
java.lang.UnsupportedOperationException
java.lang.IllegalArgumentException

TPTP 4.1.0 Platform Project
Public API Specification