gausssoft.util
Class Utils
java.lang.Object
|
+--gausssoft.util.Utils
- public class Utils
- extends Object
This class holds a series of useful utility methods.
- Since:
- GSDK 1.1
- Author:
- Allan Crooks
|
Method Summary |
static String |
toNormalString(Object obj)
Returns the string representation of an object, as would be returned by
Object.toString, if both the toString and the
hashCode method weren't overridden. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
toNormalString
public static String toNormalString(Object obj)
- Returns the string representation of an object, as would be returned by
Object.toString, if both the toString and the
hashCode method weren't overridden. It will return "null" in
the case of null being supplied.
- Returns:
- A string representation of this object
- See Also:
Object.toString()