Converts an object or primitive data type to a String object.
Syntax
String toString(Object objectData) String toString(int integerData) String toString(float floatData) String toString(double doubleData)
Parameters
Return values
Returns a String object.
Exceptions
DtpIncompatibleFormatException - If the source data type cannot be converted to String.
Examples
String myString = DtpDataConversion.toString(myObject);
See also