public class Util
extends java.lang.Object
Constructor and Description |
---|
Util() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
convToString(java.lang.Object obj)
Converts an object (its member values) into a formatted, multilined string
using reflection.
|
static void |
copy(java.lang.Object src,
java.lang.Object dst)
The function copies all members of object src into the members of object
dst.
|
public static void copy(java.lang.Object src, java.lang.Object dst)
src
- the object the data will be copied fromdst
- the object the data will be copied intopublic static java.lang.String convToString(java.lang.Object obj)
obj
- the object to be converted.