Convert this object to a string using the Java object's toString
method.
Source
String toString() { String result = JniString.unwrap(_object.callObjectMethod(_reflect.objectToString, [])); if (!result.isEmpty) { return result; } else { return 'JavaObject(${_clazz.className})'; } }