No. JDBC requires you to close all these objects by yourself (and in finally blocks to be able to handle exceptions).
Closing just the connection should close all objects derived from it, but I would not depend on that, and it is better to close those as soon as possible anyway. The opposite is certainly not true (closing a ResultSet will not close the connection), and there is also no way to get the parent Connection from a ResultSet (which I think was the gist of your question).
I would suggest to not use JDBC directly, but a more friendly framework on top, at least something as minimal like Commons DBUtils, which takes care of cleaning up these resources.