In order to understand internals of some code or print dumps on errors I use pp-like functions in Python and Emacs lisp.
Now I come to to Java and look for standard library or tecnique to get pretty-printed representation of OBJECT for Java.
Seems that current Java specification allow introspection of Java object at runtime. But introspection may be not so powerful. m(Object o) can not be called with new Object [] arg?
NOTE I am NOT looking to source code beautifier! I am looking for runtime pretty print Java object dumping.
NOTE2 These questions similar but not exactly same:
toString
s helps too. – Congregational