It there any library/framework that can print the content of a list with class hierarchy? I have some auto-generated POJOs from an XML Webservice. The lists may be 5-10 classes deep.
How can I print out the full content of the most parent element, without having to implement toString()
in every of my POJOs? Especially, as they may get regenerated later.
Is there any library that usese reflection or something to just print out the list content to the deepst level?